我正在使用 Google API 获取地址的纬度和经度,
geocoder.geocode({ 'address': address
, bounds: map.getBounds() },
function (results, status) {
if (status == google.maps.GeocoderStatus.OK) {
Lat = results[0].geometry.location.lat();
Long = results[0].geometry.location.lng();
});
但是对于相同的地址,有时我会得到值: Latitude=33.189967 和 longitude=-96.7333 更正确,而其他时候我会得到纬度和经度数组,从中获取第一个,我得到的值是 Latitude=41.920 和经度=83.41。我目前使用的地址是“1550 South Custer Rd”。请帮我一个。