gpt4 book ai didi

google-maps-api-3 - 纬度和经度错误 - Google Maps API JS 3.0

转载 作者:行者123 更新时间:2023-12-04 14:18:04 24 4
gpt4 key购买 nike

过了一会儿,Google Maps 似乎将属性名称(Qa 或 Pa)更改为 Na 或其他名称。

var map;
function initialize() {
var myLatlng = new google.maps.LatLng(-25.363882,131.044922);
var myOptions = {
zoom: 4,
center: myLatlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);

google.maps.event.addListener(map, 'click', function(event) {
AlertPos(event.latLng);
});
}

function AlertPos (location) {

// try to show the latitude and longitude
document.getElementById('lat').value = location.Qa;
document.getElementById('long').value = location.Pa;
alert(location.Qa)
alert(location.Pa)
}

这会影响我的申请。任何 body 都可以帮助吗?

最佳答案

使用 lat()lng() :

function AlertPos (location) {        
// try to show the latitude and longitude
document.getElementById('lat').value = location.lat();
document.getElementById('long').value = location.lng();
alert(location.lat());
alert(location.lng());
}

关于google-maps-api-3 - 纬度和经度错误 - Google Maps API JS 3.0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7273572/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com