Replies: 1 comment 1 reply
-
@mfazekas I guess you are missing the |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm planning the following deprecations in v10. So we can remove them in after we've released v10 final:
Deprecated implementations MapLibre and MapboxGL
MapLibre and classic MapoxGL implementations will be deprecated. Still usable to aid people in conversions, but will be removed after 10.0 is released.
Images
using images/urls directly in styles
Deprecated:
Replacement:
Why?
Required a lot of extra code, and it's esp. an issue since image loading is async. The alternative is more flexible.
=>onRegionDidChange
onMapIdle
,=> `onCameraChangedonRegionIsChanging
will be deprecated, in v10 you can use
onMapIdle
andonCameraChanged
names are much better.Remove children support in SymbolLayer
Deprecated:
Replacement:
Why?
As this is not supported iOS, also the alternative is more flexible.
Implicit reference to existing source/layers:
Deprecated:
Replacement:
Why:
Vectors/Sources needs to wait for the id to appear if they marked as existing. Regular layers don't have to wait.
Beta Was this translation helpful? Give feedback.
All reactions