我在地图上创建了一个矩形以及bounds_changed
的监听器。它调用一种方法来确定一个点是否在调整后的矩形内。但是,当我更改矩形的大小时,我收到错误Cannot read property 'getLength' of undefined
。此错误来自对containsLocation
的调用。
在我的初学者:
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);
}
答案 0 :(得分:4)
containsLocation
期望多边形作为参数,而不是矩形。
对于矩形,请使用边界的contains
方法:
var isWithinRectangle = rectangle.getBounds().contains(point);