这是what我做过:
var geocoder = new google.maps.Geocoder();
var location = new google.maps.LatLng(45.930976,10.639744);
geocoder.geocode({ 'latLng': location }, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
alert(results[1].address_components[0].long_name);
}
});
但我想首先不使用address_components [i]哪个参数,因为每个请求可能会有所不同。如何获得城市的参数? (或位置,或国家,等等......)。