Python - Google 谷歌地图
Python 提供的模块可用于将谷歌地图中可用的地址直接转换为地理坐标。 它有助于查找业务地址和定位不同地址。
使用名为 pygeocoder 的模块,它提供接收地址和地理编码的功能。 使用以下命令通过 pip 安装此模块。
安装 pygeocoder
pip install pygeocoder
查找公司地址
我们提交一个公司名称作为输入,程序给出完整的地址作为输出。 该模块在后台使用来自 google 地图的数据来检索结果。
from pygeocoder import Geocoder business_name = "Workafella Business Centre - Hitec city" print "Searching %s" %business_name results = Geocoder.geocode(business_name) for result in results: print result
当运行上面的程序时,得到以下输出 −
Searching Workafella Business Centre - Hitec city Western pearl building 1st floor, Hitech City Rd, Opposite HDFC Bank, Kondapur, Hyderabad, Telangana 500084, India