gpt4 book ai didi

javascript - computeArea() 在 google map api v3 中返回 [object object]

转载 作者:行者123 更新时间:2023-12-03 12:02:51 25 4
gpt4 key购买 nike

尝试计算矩形面积时遇到麻烦

这是a link到我创建的网站。

矩形已正确绘制,但面积计算错误。

下面是我的 JavaScript 代码:

  var Area;
var areaPath;
function initialize() {
var map = new google.maps.Map(document.getElementById('map-canvas'), {
zoom: 11,
center: new google.maps.LatLng(39.912106, 116.397346),
mapTypeId: google.maps.MapTypeId.ROADMAP
});

var rectBoundsLatlng = new Array;
var rectBoundsLatlngPath = new Array;

rectBoundsLatlng[0] = new google.maps.LatLng(39.907679, 116.342119),
rectBoundsLatlng[1] = new google.maps.LatLng(39.950330, 116.394133),
rectBoundsLatlngPath[0] = new google.maps.LatLng(rectBoundsLatlng[1].lat(),rectBoundsLatlng[0].lng()),
rectBoundsLatlngPath[1] = new google.maps.LatLng(rectBoundsLatlng[0].lat(),rectBoundsLatlng[1].lng())

var areaPath = [
rectBoundsLatlng[0],
rectBoundsLatlngPath[0],
rectBoundsLatlng[1],
rectBoundsLatlngPath[1],
rectBoundsLatlng[0]
];

Area = new google.maps.geometry.spherical.computeArea( areaPath );
alert(Area);

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

希望有人能帮我解决这个问题。顺便说一句,几何库已经包含在内。

最佳答案

删除"new"。更改:

Area = new google.maps.geometry.spherical.computeArea( areaPath ); 

致:

Area = google.maps.geometry.spherical.computeArea( areaPath );

working fiddle

关于javascript - computeArea() 在 google map api v3 中返回 [object object],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25331341/

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