我想在拖动另一个标记时实现对标记的捕捉功能。
我有一个函数可以检查两个标记是否“关闭”:(从这里获取)
function arePointsNear(point1, point2) {
var sw = new google.maps.LatLng(point2.lat() - 0.005, point2.lng() - 0.005);
var ne = new google.maps.LatLng(point2.lat() + 0.005, point2.lng() + 0.005);
var bounds = new google.maps.LatLngBounds(sw, ne);
return bounds.contains(point1);
};
现在,在标记的拖动事件中,我这样做:
for (var index in allMarkers) {
if(allMarkers[index] == marker) {
continue;
}
var point1 = allMarkers[index].position;
var point2 = marker.position;
// This always returns true
var isClose = arePointsNear(point1, point2);
}
难道我做错了什么?