gpt4 book ai didi

javascript - 无法使用 google.maps.LatLng 对象的纬度

转载 作者:行者123 更新时间:2023-11-30 07:09:26 25 4
gpt4 key购买 nike

我有这段代码

<!DOCTYPE html>
<html>
<head>
<title>Simple Map</title>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<style>
html, body, #map-canvas {
margin: 0;
padding: 0;
height: 100%;
}
</style>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
<script>
var map;
function initialize() {
var mapOptions = {
zoom: 8,
center: new google.maps.LatLng(-34.397, 150.644),
mapTypeId: google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map(document.getElementById('map-canvas'),
mapOptions);
var polygonCoords = [
new google.maps.LatLng(25.774252, -80.190262),
new google.maps.LatLng(18.466465, -66.118292),
new google.maps.LatLng(32.321384, -64.757370),
new google.maps.LatLng(25.774252, -80.190262)
];
var north = new google.maps.LatLng(), west = new google.maps.LatLng(), east = new google.maps.LatLng(), south = new google.maps.LatLng();
north = polygonCoords[0];
west = polygonCoords[0];
east = polygonCoords[0];
south = polygonCoords[0];

for (i = 1; i < polygonCoords.length; i++) {
if (north.lat < polygonCoords[i].lat) {
north = polygonCoords[i];
}
if (south.lat > polygonCoords[i].lat) {
south = polygonCoords[i];
}
if (west.lng > polygonCoords[i].lng) {
west = polygonCoords[i];
}
if (east.lng < polygonCoords[i].lng) {
east = polygonCoords[i];
}
}

var center = new google.maps.LatLng(0,0);
center.lat = (north.lat + south.lat) / 2;
center.lng = (west.lng + east.lng) / 2;
var num = (north.lat + south.lat) / 2;
console.log(num);
}

google.maps.event.addDomListener(window, 'load', initialize);

</script>
</head>
<body>
<div id="map-canvas"></div>
</body>
</html>

为什么num的结果是NaN。我如何在数字中使用 lat、lng?可能重复 here ,我正在尝试使用第一种解决方案,因为第二种解决方案对我不起作用。现在我陷入了这个问题。提前谢谢你。

最佳答案

A google.maps.LatLng object没有记录的 lat 属性(或 lng 属性)。它有一个返回纬度的 .lat() 方法和一个返回经度的 .lng() 方法。

var num = (north.lat() + south.lat())/2;

代码片段:

var map;

function initialize() {
var mapOptions = {
zoom: 5,
center: new google.maps.LatLng(-34.397, 150.644),
mapTypeId: google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map(document.getElementById('map-canvas'),
mapOptions);
var polygonCoords = [
new google.maps.LatLng(25.774252, -80.190262),
new google.maps.LatLng(18.466465, -66.118292),
new google.maps.LatLng(32.321384, -64.757370),
new google.maps.LatLng(25.774252, -80.190262)
];
var north = new google.maps.LatLng(),
west = new google.maps.LatLng(),
east = new google.maps.LatLng(),
south = new google.maps.LatLng();
north = polygonCoords[0];
west = polygonCoords[0];
east = polygonCoords[0];
south = polygonCoords[0];

for (i = 1; i < polygonCoords.length; i++) {
if (north.lat() < polygonCoords[i].lat()) {
north = polygonCoords[i];
}
if (south.lat() > polygonCoords[i].lat()) {
south = polygonCoords[i];
}
if (west.lng() > polygonCoords[i].lng()) {
west = polygonCoords[i];
}
if (east.lng() < polygonCoords[i].lng()) {
east = polygonCoords[i];
}
}

var center = {};
center.lat = (north.lat() + south.lat()) / 2;
center.lng = (west.lng() + east.lng()) / 2;
var num = (north.lat() + south.lat()) / 2;
console.log(num);
var polygon = new google.maps.Polygon({
path: polygonCoords,
map: map
})
map.setCenter(center);
}

google.maps.event.addDomListener(window, 'load', initialize);
html,
body,
#map-canvas {
margin: 0;
padding: 0;
height: 100%;
}
<script src="https://maps.googleapis.com/maps/api/js?libraries=geometry"></script>
<div id="map-canvas"></div>

关于javascript - 无法使用 google.maps.LatLng 对象的纬度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16748716/

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