从地理编码器 json 结果中获取 lat,lng
if (status == google.maps.GeocoderStatus.OK) {
hangout = results[0].geometry.location;
console.log(hangout);
console.log(hangout.lat);
}
我知道我在这里做错了什么,但这是什么? Hangout 会提醒 lat lng,但我如何自行获取 lat。
if (status == google.maps.GeocoderStatus.OK) {
hangout = results[0].geometry.location;
console.log(hangout);
console.log(hangout.lat);
}
I know I'm doing something wrong here but what is it? hangout alerts the lat lng but how do i get the lat by itself.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据文档:http://code.google.com/ apis/maps/documentation/javascript/reference.html#LatLng
您将使用:
According to the documentation: http://code.google.com/apis/maps/documentation/javascript/reference.html#LatLng
You would use: