我的代码:
if(!bounds.isEmpty()) {
map.fitBounds(bounds);
if (map.getZoom() > 11) {
map.setZoom(11);
}
}
但我看到map.setZoom(11);
可以在.fitBounds
结束之前调用它。所以结果不是我想要的。
有没有办法在.fitBound
完成时管理回调?
我的代码:
if(!bounds.isEmpty()) {
map.fitBounds(bounds);
if (map.getZoom() > 11) {
map.setZoom(11);
}
}
但我看到map.setZoom(11);
可以在.fitBounds
结束之前调用它。所以结果不是我想要的。
有没有办法在.fitBound
完成时管理回调?