如何获取Google地图API、gmaps.js中放置标记的区域名称?

How to get the name of the region where the marker is placed in Google Maps API, gmaps.js?

我应该使用 Google 地图 Api 或 gmaps.js 通过坐标获取区域名称 如果你知道怎么做,请给我答案。对不起我的英语。

您需要使用 Geocoder 服务从坐标中获取位置详细信息。 Geocoder 的响应将包含所有详细信息。您只需要找出您感兴趣的细节即可。

var geocoder = new google.maps.Geocoder();

geocoder.geocode({
    'latLng': latLng
}, function (results, status) {
    if (status == google.maps.GeocoderStatus.OK) {
        console.log(results);
    }
});

另见http://jsfiddle.net/eB2RX/1/