0

所以我这里有一张地图

如何使用 Google Maps API 检测给定坐标是否在该多边形内?那可能吗?

提前致谢。

4

2 回答 2

1

谷歌已经提供了一个

  var bermudaTriangle = new google.maps.Polygon({
    paths: [
      new google.maps.LatLng(25.774, -80.190),
      new google.maps.LatLng(18.466, -66.118),
      new google.maps.LatLng(32.321, -64.757)
    ]
  });

  google.maps.event.addListener(map, 'click', function(event) {
    console.log(google.maps.geometry.poly.containsLocation(event.latLng, bermudaTriangle));
  });

https://developers.google.com/maps/documentation/javascript/geometry#containsLocation

于 2013-10-31T02:41:19.607 回答
0

对的,这是可能的。看到这个功能:http: //github.com/tparkin/Google-Maps-Point-in-Polygon

于 2010-10-15T19:50:46.353 回答