jupyter | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
With the release of Plotly.py v5.24.0, we are introducing a new set of trace types for maps with tile underlays, including from Plotly Express:
px.scatter_map
px.line_map
px.choropleth_map
px.density_map
as well as Plotly Graph Objects:
go.Choroplethmap
go.Scattermap
go.Densitymap
These traces replace the existing Mapbox traces, px.scatter_mapbox
, px.line_mapbox
, etc., but use MapLibre as the map renderer rather than Mapbox.
When switching to the new traces, keep an eye out for improved rendering performance, WebGL2 support, and over time, improved features in the Plotly map traces inherited from the MapLibre renderer, including projection support, globe views, terrain support, and support for modern mapping standards.
You can learn more about the motivations for this change in our announcement post.
As a result of removing Mapbox as the rendering engine, we're also removing the Mapbox branding from these trace names. This means that migrating from Mapbox traces to MapLibre traces will require some code changes in your projects.
- Change trace names from
*mapbox
to*map
. For any existing trace name ending in*mapbox
, ensure you've removed the "box
" suffix. - If in use, update
layout.mapbox
argument in your layout configuration tolayout.map
. The nested properties are identical in the new map traces, so no other changes should be required. - If in use, update
mapbox_style
tomap_style
. - Verify your
map_style
settings. Withmapbox
traces, we bundlebasic
,streets
,outdoors
,light
,dark
,satellite
, andsatellite-streets
styles, using Mapbox styling. These style names are still available, but they now reference slightly different styles provided by other tools.
Note that Mapbox API keys are no longer required for Plotly-provided styles, but using external styles in your Plotly maps remains supported with the existing API.
Built-in styles in map traces are free styles from Carto and ESRI. Several names are re-used from the previous Mapbox styles.
Compare to the previous Mapbox styles: