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"
}

しかし、「Московская область」の代わりに「Курганская область」を返します...Googleマップチームにこれを修正させるにはどうすればよいですか?

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 に答える