Google Maps V3 APIを使用して、クライアント側で逆ジオコードをどのように実行しますか?アドレスからLatLngへのフォワードジオコードは単純です(以下のコード)が、逆ジオコードに対して同じことをどのように行いますか?
通常の地理コードコード:
geocoder = new google.maps.Geocoder();
geocoder.geocode( { 'address': address}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
map.setCenter(results[0].geometry.location);
var marker = new google.maps.Marker({
map: map,
position: results[0].geometry.location
});