我正在使用Google Maps JavaScript API v3
以下代码几乎完全来自Google示例代码,但是我遇到了一个奇怪的问题。 results [0] .geometry.location具有键“ k”和“ D”,而不是“ lat”和“ lng”。
知道为什么会这样吗?
mapui.geocoder.geocode( { 'address': address}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
console.log(results[0]);
var lat = results[0].geometry.location['lat'];
var lng = results[0].geometry.location['lng'];
}
})
最佳答案
您必须使用lat()
和lng()
函数。 geometry.location
是LatLng
类。
var lat = results[0].geometry.location.lat();
var lng = results[0].geometry.location.lng();
https://developers.google.com/maps/documentation/javascript/reference#GeocoderGeometry
https://developers.google.com/maps/documentation/javascript/reference#LatLng
在您的JavaScript控制台中查看
__proto__
,您会找到可用的方法。关于javascript - Google Map Geocode API返回的纬度/经度键不正确,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27520224/