google 映射 fitBounds 回调
google maps fitBounds callback
我知道有一个 bounds_changed
事件会在边界发生变化时触发,但是我需要知道 fitBounds 何时完成(当边界发生变化或边界保持不变时)。
Google 有某种容忍度,如果边界变化很小,它实际上不会改变边界/调用 bounds_changed。我需要知道这种情况何时发生。
我已经通过超时成功地完成了这项工作,但是当 bounds_changed 触发时间超过 100 毫秒时,它看起来很老套并且可能容易出现一些错误。
参见示例:http://jsbin.com/sosurexuke/1/edit?js,console,output
有更好的解决方案吗?
编辑:如果您认为只是检查 map.getBounds() 是否与您发送的 fitBounds() 相同,那么您会失望地知道拟合边界的结果通常不是甚至接近你发送的界限。我写了这个函数认为这可能是可能的
function boundsAreIdentical(bounds1, bounds2) {
if (!bounds1 || !bounds2) return false;
var tolerance = 0.00001;
console.log(bounds1.getNorthEast().lat(), bounds2.getNorthEast().lat());
console.log(bounds1.getNorthEast().lng(), bounds2.getNorthEast().lng());
console.log(bounds1.getSouthWest().lat(), bounds2.getSouthWest().lat());
console.log(bounds1.getSouthWest().lng(), bounds2.getSouthWest().lng());
if (
(Math.abs(bounds1.getNorthEast().lat() - bounds2.getNorthEast().lat()) <= tolerance) &&
(Math.abs(bounds1.getNorthEast().lng() - bounds2.getNorthEast().lng()) <= tolerance) &&
(Math.abs(bounds1.getSouthWest().lat() - bounds2.getSouthWest().lat()) <= tolerance) &&
(Math.abs(bounds1.getSouthWest().lng() - bounds2.getSouthWest().lng()) <= tolerance)) {
return true;
}
return false;
}
2 年后编辑:
似乎在 google 地图 (3.32) 的最新实验版本中,即使边界与当前边界相同,也会触发 bounds_changed
。
我将原始示例更新为版本 3.31,它仍然显示原始问题。
解决此问题第一部分(知道边界何时完成更改)的最简单方法是使用 idle event listener.
无论您如何更改边界,请在您即将更改边界之前设置此事件。这样,当边界全部确定时,地图将注册为空闲并且空闲事件会触发,您可以在其中做您的事。为防止事件相互叠加,请同时清除它。
您可能需要 fiddle 一点。说到摆弄,这里有一个 fiddle。在这个 fiddle 中,我只是将警报设置为每次都发生:
https://jsbin.com/kapimov/edit?js,output 点击 "Change Bounds" 你会看到它一遍又一遍地发生:)
编辑:检查 fitBounds() 失败时是否触发,比较触发 fitBounds() 前后的中心。
即使尝试将边界设置为同一坐标两次,中心也会发生变化并且可以进行比较。中心检查似乎发生在地图实际移动边界之前,但总是在调用该函数时发生变化。
点击 "Fit Current Bounds" 按钮两次以查看它的运行情况;第一次 'bounds_changed' 触发,第二次触发,但 center 仍然正确检查。注释掉 fitBounds() 函数,看看没有它中心不会改变。
如问题编辑中所述。如果你可以使用 3.32,那么就使用它。否则,如果您需要一个适用于 3.32 之前版本的解决方案,那么您只需在拟合边界之前将地图平移 1 个像素即可。视觉变化不会触发刷新并强制边界始终发生变化。
演示:http://jsbin.com/bipekaxosa/1/edit?js,console,output
function pan(map, newCenterLatLng, offsetx, offsety, callback) {
if (!map.getProjection()) {
if (callback) {
return setTimeout(pan, 1, map, newCenterLatLng, offsetx, offsety, callback);
}
throw new Error("You must wait until map.getProjection() is ready. Try using the callback instead");
}
var newCenterLatLngPixels = map.getProjection().fromLatLngToPoint(newCenterLatLng);
var offset = new google.maps.Point(
((typeof (offsetx) == "number" ? offsetx : 0) / Math.pow(2, map.getZoom())) || 0,
((typeof (offsety) == "number" ? offsety : 0) / Math.pow(2, map.getZoom())) || 0
);
map.setCenter(map.getProjection().fromPointToLatLng(new google.maps.Point(
newCenterLatLngPixels.x - offset.x,
newCenterLatLngPixels.y + offset.y
)));
if (callback) {
return callback();
}
}
function fitBoundsAndCallback(map, bounds, callback) {
google.maps.event.addListenerOnce(map, "bounds_changed", function() {
if (callback) {
callback();
}
});
// Pan the map 1 pixel up so that bounds will always change
// even in the event you are fitting to the same bounds as before
// Remove this once the move to gmaps 3.32 as bounds_changed works always
this.pan(map, map.getCenter(), 0, 1, function(){
map.fitBounds(bounds);
});
}
我知道有一个 bounds_changed
事件会在边界发生变化时触发,但是我需要知道 fitBounds 何时完成(当边界发生变化或边界保持不变时)。
Google 有某种容忍度,如果边界变化很小,它实际上不会改变边界/调用 bounds_changed。我需要知道这种情况何时发生。
我已经通过超时成功地完成了这项工作,但是当 bounds_changed 触发时间超过 100 毫秒时,它看起来很老套并且可能容易出现一些错误。
参见示例:http://jsbin.com/sosurexuke/1/edit?js,console,output
有更好的解决方案吗?
编辑:如果您认为只是检查 map.getBounds() 是否与您发送的 fitBounds() 相同,那么您会失望地知道拟合边界的结果通常不是甚至接近你发送的界限。我写了这个函数认为这可能是可能的
function boundsAreIdentical(bounds1, bounds2) {
if (!bounds1 || !bounds2) return false;
var tolerance = 0.00001;
console.log(bounds1.getNorthEast().lat(), bounds2.getNorthEast().lat());
console.log(bounds1.getNorthEast().lng(), bounds2.getNorthEast().lng());
console.log(bounds1.getSouthWest().lat(), bounds2.getSouthWest().lat());
console.log(bounds1.getSouthWest().lng(), bounds2.getSouthWest().lng());
if (
(Math.abs(bounds1.getNorthEast().lat() - bounds2.getNorthEast().lat()) <= tolerance) &&
(Math.abs(bounds1.getNorthEast().lng() - bounds2.getNorthEast().lng()) <= tolerance) &&
(Math.abs(bounds1.getSouthWest().lat() - bounds2.getSouthWest().lat()) <= tolerance) &&
(Math.abs(bounds1.getSouthWest().lng() - bounds2.getSouthWest().lng()) <= tolerance)) {
return true;
}
return false;
}
2 年后编辑:
似乎在 google 地图 (3.32) 的最新实验版本中,即使边界与当前边界相同,也会触发 bounds_changed
。
我将原始示例更新为版本 3.31,它仍然显示原始问题。
解决此问题第一部分(知道边界何时完成更改)的最简单方法是使用 idle event listener.
无论您如何更改边界,请在您即将更改边界之前设置此事件。这样,当边界全部确定时,地图将注册为空闲并且空闲事件会触发,您可以在其中做您的事。为防止事件相互叠加,请同时清除它。
您可能需要 fiddle 一点。说到摆弄,这里有一个 fiddle。在这个 fiddle 中,我只是将警报设置为每次都发生:
https://jsbin.com/kapimov/edit?js,output 点击 "Change Bounds" 你会看到它一遍又一遍地发生:)
编辑:检查 fitBounds() 失败时是否触发,比较触发 fitBounds() 前后的中心。
即使尝试将边界设置为同一坐标两次,中心也会发生变化并且可以进行比较。中心检查似乎发生在地图实际移动边界之前,但总是在调用该函数时发生变化。
点击 "Fit Current Bounds" 按钮两次以查看它的运行情况;第一次 'bounds_changed' 触发,第二次触发,但 center 仍然正确检查。注释掉 fitBounds() 函数,看看没有它中心不会改变。
如问题编辑中所述。如果你可以使用 3.32,那么就使用它。否则,如果您需要一个适用于 3.32 之前版本的解决方案,那么您只需在拟合边界之前将地图平移 1 个像素即可。视觉变化不会触发刷新并强制边界始终发生变化。
演示:http://jsbin.com/bipekaxosa/1/edit?js,console,output
function pan(map, newCenterLatLng, offsetx, offsety, callback) {
if (!map.getProjection()) {
if (callback) {
return setTimeout(pan, 1, map, newCenterLatLng, offsetx, offsety, callback);
}
throw new Error("You must wait until map.getProjection() is ready. Try using the callback instead");
}
var newCenterLatLngPixels = map.getProjection().fromLatLngToPoint(newCenterLatLng);
var offset = new google.maps.Point(
((typeof (offsetx) == "number" ? offsetx : 0) / Math.pow(2, map.getZoom())) || 0,
((typeof (offsety) == "number" ? offsety : 0) / Math.pow(2, map.getZoom())) || 0
);
map.setCenter(map.getProjection().fromPointToLatLng(new google.maps.Point(
newCenterLatLngPixels.x - offset.x,
newCenterLatLngPixels.y + offset.y
)));
if (callback) {
return callback();
}
}
function fitBoundsAndCallback(map, bounds, callback) {
google.maps.event.addListenerOnce(map, "bounds_changed", function() {
if (callback) {
callback();
}
});
// Pan the map 1 pixel up so that bounds will always change
// even in the event you are fitting to the same bounds as before
// Remove this once the move to gmaps 3.32 as bounds_changed works always
this.pan(map, map.getCenter(), 0, 1, function(){
map.fitBounds(bounds);
});
}