Fixed
Status Update
Comments
pa...@gmail.com <pa...@gmail.com> #2
[Comment deleted]
ro...@gmail.com <ro...@gmail.com> #3
Just discovered that when you drag the marker off the map and it vanishes you can drag
the map in the direction that the marker vanished and the marker will appear somewhere
else on the map (presumably to a place you dragged it to where it became stuck)
the map in the direction that the marker vanished and the marker will appear somewhere
else on the map (presumably to a place you dragged it to where it became stuck)
Description
myBounds.extend(myPoint);
myBounds.union(yourBounds);
map.fitBounds(myBounds);
If these functions returned the modified object, we could chain these calls, and write:
map.fitBounds(myBounds.extend(myPoint).union(yourBounds));
Much nicer.