如何使用python获取我们的确切位置(纬度和经度)?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何使用python获取我们的确切位置(纬度和经度)?相关的知识,希望对你有一定的参考价值。
我想找到我现在住的地方的坐标。我尝试使用这样的代码:
send_url = 'http://freegeoip.net/json'
r = requests.get(send_url)
j = json.loads(r.text)
lat = j['latitude']
lon = j['longitude']
它给了我城市坐标。但我现在想要我所在位置的坐标。怎么做到的?
答案
这对我有用
from selenium import webbrowser
a=webdriver.Chrome()
a.get("https://www.google.com/maps")
print(a.execute_script("window.location"))
以上是关于如何使用python获取我们的确切位置(纬度和经度)?的主要内容,如果未能解决你的问题,请参考以下文章