5

我需要在我的地图中获取多边形的面积。我找了一个例子new google.maps.geometry.spherical.computeArea,但我不能让它工作,我不知道为什么。

function dibuV(area){
  var i;
  var a = new Array();
  for(i=0; i<area.length; i++){
    var uno = area[i].split(",");
    a[i] = new google.maps.LatLng(uno[0],uno[1]);
  }
  poligon = new google.maps.Polygon({
    paths: a,
    strokeColor: "#22B14C",
    strokeOpacity: 0.8,
    strokeWeight: 2,
    fillColor: "#22B14C",  
    fillOpacity: 0.35  
  })  
  poligon.setMap(map);//until here is ok 
  var z = new google.maps.geometry.spherical.computeArea(poligon.getPath());
  alert(z); //this is not working
}
4

3 回答 3

15

您的代码给您的错误:google.maps.geometry is undefined

Google Maps v3 API 文档中,几何函数是默认不加载的库的一部分:

本文档中的概念是指仅在 google.maps.geometry 库中可用的功能。当您加载 Maps Javascript API 时,默认情况下不会加载此库,但必须通过使用库引导参数明确指定。

为了在您的页面中加载和使用几何功能,您需要通知 Google 您将使用几何库,方法是将其添加到您的初始 Google API 调用中,包括libraries=geometry

<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?libraries=geometry&sensor=false"></script>

然后这将加载几何库,您的z变量将包含一个对象。

带有工作代码的测试页面:

<!DOCTYPE html>
<html>
<head>
    <style type="text/css">
      html, body, #map_canvas {
        margin: 0;
        padding: 0;
        height: 100%;
      }
    </style>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?libraries=geometry&sensor=false"></script>
<script type="text/javascript">
    var map;
    function initialize()
    {
        var myOptions = {
          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'), myOptions);
    }

    google.maps.event.addDomListener(window, 'load', initialize);
    </script>
<script>
function test()
{
var arr = new Array()
arr.push('51.5001524,-0.1262362');
arr.push('52.5001524,-1.1262362');
arr.push('53.5001524,-2.1262362');
arr.push('54.5001524,-3.1262362');
dibuV(arr);
}
function dibuV(area)
{
var a = new Array();

for(var i=0; i<area.length; i++)
{
    var uno = area[i].split(",");
    a[i] = new google.maps.LatLng(uno[0],uno[1]);
}

poligon = new google.maps.Polygon({
    paths: a,
    strokeColor: "#22B14C",
    strokeOpacity: 0.8,
    strokeWeight: 2,
    fillColor: "#22B14C",   
    fillOpacity: 0.35   
})  

poligon.setMap(map);//until here is ok 
var z = new google.maps.geometry.spherical.computeArea(poligon.getPath());
alert(z); //this is not working
}
</script>
</head>
<body onload="test();">
    <div id="map_canvas"></div>
</body>
</html>
于 2012-05-26T11:51:28.760 回答
6

这不起作用,因为您正在使用“新”来使用 computeArea 方法。使用“google.maps.geometry.spherical.computeArea”而不使用“new”。例子:

var z = google.maps.geometry.spherical.computeArea(myPolyline.getPath().getArray());
alert(z);

这将起作用。

于 2013-01-14T13:51:33.377 回答
0

请看我下面的代码

var z = google.maps.geometry.spherical.computeArea(poligon.getPath());
于 2020-06-01T10:27:33.780 回答