我不知道在哪里问所以我希望这是这个地方
我想问一下谷歌地图v3反向地理编码是否有限制!我之所以问,是因为使用 Google 地理编码 API 的查询限制为每天 2,500 个地理定位请求。
function codeLatLng(newPosition) {
geocoder = new google.maps.Geocoder();
var latlng = new google.maps.LatLng(newPosition.lat(), newPosition.lng());
geocoder.geocode({'latLng': latlng}, function(results, status)
{
if (status == google.maps.GeocoderStatus.OK)
{
if (results[1])
{
formattedaddress = results[0].formatted_address;
alert (formattedaddress);
}
else
{
alert('No results found');
}
}