MCPcopy Index your code
hub / github.com/plotly/plotly.py / create_hexbin_mapbox

Function create_hexbin_mapbox

plotly/figure_factory/_hexbin_map.py:535–546  ·  view source on GitHub ↗
(*args, **kwargs)

Source from the content-addressed store, hash-verified

533
534
535def create_hexbin_mapbox(*args, **kwargs):
536 warnings.warn(
537 "create_hexbin_mapbox() is deprecated and will be removed in the next major version. "
538 + "Please use create_hexbin_map() instead. "
539 + "Learn more at: https://plotly.com/python/mapbox-to-maplibre/",
540 stacklevel=2,
541 category=DeprecationWarning,
542 )
543 if "mapbox_style" in kwargs:
544 kwargs["map_style"] = kwargs.pop("mapbox_style")
545
546 return create_hexbin_map(*args, **kwargs)

Callers

nothing calls this directly

Calls 2

create_hexbin_mapFunction · 0.70
popMethod · 0.45

Tested by

no test coverage detected