如何在python中获取经度和纬度的位置?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在python中获取经度和纬度的位置?相关的知识,希望对你有一定的参考价值。

我想通过在python中使用经度和纬度来显示位置,然后在地图上显示它。任何帮助将受到高度赞赏

答案

你可以用硒试试这个:

from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.support.ui import WebDriverWait
def getLocation():
    options = Options()
    options.add_argument("--headless")
    options.add_argument("--window-size=%s" % "1,1")
    options.add_argument("--use-fake-ui-for-media-stream")
    timeout = 20
    driver = webdriver.Chrome(options=options)
    driver.get("https://mycurrentlocation.net/")
    wait = WebDriverWait(driver, timeout)
    longitude = driver.find_elements_by_xpath('//*[@id="longitude"]')
    longitude = [x.text for x in longitude]
    longitude = str(longitude[0])
    latitude = driver.find_elements_by_xpath('//*[@id="latitude"]')
    latitude = [x.text for x in latitude]
    latitude = str(latitude[0])
    alatitude = driver.find_elements_by_xpath('//*[@id="altitude"]')
    alatitude = [x.text for x in alatitude]
    alatitude = str(alatitude[0])
    return (latitude,longitude,alatitude)


它做的是打开一个站点等待,然后通过id名称得到coords

以上是关于如何在python中获取经度和纬度的位置?的主要内容,如果未能解决你的问题,请参考以下文章

Android:如何获取经度和纬度的当前位置?

如何在 iOS 上的变量中获取位置(纬度和经度值)?

如果我们在 Android 中使用位置 API 给出纬度和经度,如何获取地址

如何在iphone中获取当前位置的纬度经度?

如何使用纬度和经度获取位置名称或城市?

如何从纬度/经度获取附近的位置?