0

地理编码 http://maps.googleapis.com/maps/api/geocode/json?address=Москва&sensor=false的结果 应该是

{
   "results" : [
      {
         "address_components" : [
            {
               "long_name" : "Москва",
               "short_name" : "Москва",
               "types" : [ "locality", "political" ]
            },
            {
               "long_name" : "Московская область",
               "short_name" : "Московская область",
               "types" : [ "administrative_area_level_1", "political" ]
            },
            {
               "long_name" : "Россия",
               "short_name" : "RU",
               "types" : [ "country", "political" ]
            }
         ],
         "formatted_address" : "Москва, Московская область, Россия",
         "geometry" : {
            "bounds" : {
               "northeast" : {
                  "lat" : 56.0213690,
                  "lng" : 37.9650910
               },
               "southwest" : {
                  "lat" : 55.490520,
                  "lng" : 37.1303210
               }
            },
            "location" : {
               "lat" : 55.74279280,
               "lng" : 37.61540090
            },
            "location_type" : "APPROXIMATE",
            "viewport" : {
               "northeast" : {
                  "lat" : 55.94326550,
                  "lng" : 38.12763850
               },
               "southwest" : {
                  "lat" : 55.54128490,
                  "lng" : 37.10316330
               }
            }
         },
         "types" : [ "locality", "political" ]
      }
   ],
   "status" : "OK"
}

但它返回“Курганская область”而不是“Московская область”......如何让谷歌地图团队纠正这个问题?

4

1 回答 1

1

使用 maps.google.com 地图右下角的“报告问题”链接

在问题跟踪器中查看此问题: http ://code.google.com/p/gmaps-api-issues/issues/detail?id=4208

于 2012-06-21T13:09:58.057 回答