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
Mapbox zoom/pan events don't match the corresponding API calls. Currently mapbox's moveend (which covers pan and wheel zoom) generates a plotly_relayout, as it should, but the data looks like:
Double-clicking on a mapbox map creates a plotly_doubleclick event with no data - which is fine, we do that in cartesian as well - but we should also emit a plotly_relayout that matches the change in view.
I suppose the first part of this could be viewed as a breaking change, but the second part is simply an omission, a view change that doesn't generate the right event to describe the new view.
The text was updated successfully, but these errors were encountered:
Mapbox zoom/pan events don't match the corresponding API calls. Currently mapbox's
moveend
(which covers pan and wheel zoom) generates aplotly_relayout
, as it should, but the data looks like:whereas the matching
Plotly.relayout
(in order to not 🔪 the rest of themapbox
object) should be:Double-clicking on a mapbox map creates a
plotly_doubleclick
event with no data - which is fine, we do that in cartesian as well - but we should also emit aplotly_relayout
that matches the change in view.I suppose the first part of this could be viewed as a breaking change, but the second part is simply an omission, a view change that doesn't generate the right event to describe the new view.
The text was updated successfully, but these errors were encountered: