Python - 谷歌地图

  • 简述

    Python 提供了可用于将谷歌地图中可用的地址直接转换为地理坐标的模块。它有助于查找商业地址和定位不同地址的接近程度。
    我们使用一个名为pygeocoder它提供了接收地址和地理编码的功能。该模块是通过 pip 使用以下命令安装的。
  • 安装 pygeocoder

    
    pip install pygeocoder 
    
  • 寻找营业地址

    我们提交一个企业名称作为输入,程序给出完整的地址作为输出。该模块在后台使用来自谷歌地图的数据来检索结果。
    
    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