我已经在地图上创建了一个矩形以及bounds_changed的侦听器。它调用一种方法来确定点是否在调整后的矩形内。但是,更改矩形的大小时出现错误Cannot read property 'getLength' of undefined。该错误来自对containsLocation的调用。

在我的init中:

rectangle = new google.maps.Rectangle({
                bounds: bounds,
                editable: true,
                draggable: true,
                geodesic: true,
                map: map
            });


google.maps.event.addListener(rectangle , 'bounds_changed', isWithinPoly);


确定点是否落在调整后的矩形中的函数:

function isWithinPoly(){
    console.log(rectangle);
    var point = new google.maps.LatLng(51.331, 3.538);
    var isWithinPolygon = google.maps.geometry.poly.containsLocation(point, rectangle);
    console.log(isWithinPolygon);

}

最佳答案

containsLocation需要一个多边形作为参数,而不是一个矩形。

对于矩形,请使用边界的方法contains

var isWithinRectangle = rectangle.getBounds().contains(point);

关于javascript - 谷歌 map API:确定点是否在形状内,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26413963/

10-12 04:24