You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just a quick comment that when _showBoundMarkers() is called on moveend and zoomeend the edit point (newPointMarker) will be removed if the parent marker is off-screen.
Hello,
This is a great plugin, thanks a lot for that.
Just a quick comment that when
_showBoundMarkers()
is called onmoveend
andzoomeend
the edit point (newPointMarker
) will be removed if the parent marker is off-screen.I beleive I've fixed this by changing:
that._setMarkerVisible(marker.newPointMarker, markerNo > 0 && bounds.contains(marker.getLatLng()));
to
that._setMarkerVisible(marker.newPointMarker, markerNo > 0 && bounds.contains(marker.newPointMarker.getLatLng()));
But i'm not sure if that's going to have any other consequences?
Thanks.
The text was updated successfully, but these errors were encountered: