@@ -1406,193 +1406,6 @@ def line_map(
14061406line_map .__doc__ = make_docstring (line_map )
14071407
14081408
1409- def scatter_mapbox (
1410- data_frame = None ,
1411- lat = None ,
1412- lon = None ,
1413- color = None ,
1414- text = None ,
1415- hover_name = None ,
1416- hover_data = None ,
1417- custom_data = None ,
1418- size = None ,
1419- animation_frame = None ,
1420- animation_group = None ,
1421- category_orders = None ,
1422- labels = None ,
1423- color_discrete_sequence = None ,
1424- color_discrete_map = None ,
1425- color_continuous_scale = None ,
1426- range_color = None ,
1427- color_continuous_midpoint = None ,
1428- opacity = None ,
1429- size_max = None ,
1430- zoom = 8 ,
1431- center = None ,
1432- mapbox_style = None ,
1433- title = None ,
1434- subtitle = None ,
1435- template = None ,
1436- width = None ,
1437- height = None ,
1438- ) -> go .Figure :
1439- """
1440- *scatter_mapbox* is deprecated! Use *scatter_map* instead.
1441- Learn more at: https://plotly.com/python/mapbox-to-maplibre/
1442- In a Mapbox scatter plot, each row of `data_frame` is represented by a
1443- symbol mark on a Mapbox map.
1444- """
1445- warn (
1446- "*scatter_mapbox* is deprecated!"
1447- + " Use *scatter_map* instead."
1448- + " Learn more at: https://plotly.com/python/mapbox-to-maplibre/" ,
1449- stacklevel = 2 ,
1450- category = DeprecationWarning ,
1451- )
1452- return make_figure (args = locals (), constructor = go .Scattermapbox )
1453-
1454-
1455- scatter_mapbox .__doc__ = make_docstring (scatter_mapbox )
1456-
1457-
1458- def choropleth_mapbox (
1459- data_frame = None ,
1460- geojson = None ,
1461- featureidkey = None ,
1462- locations = None ,
1463- color = None ,
1464- hover_name = None ,
1465- hover_data = None ,
1466- custom_data = None ,
1467- animation_frame = None ,
1468- animation_group = None ,
1469- category_orders = None ,
1470- labels = None ,
1471- color_discrete_sequence = None ,
1472- color_discrete_map = None ,
1473- color_continuous_scale = None ,
1474- range_color = None ,
1475- color_continuous_midpoint = None ,
1476- opacity = None ,
1477- zoom = 8 ,
1478- center = None ,
1479- mapbox_style = None ,
1480- title = None ,
1481- subtitle = None ,
1482- template = None ,
1483- width = None ,
1484- height = None ,
1485- ) -> go .Figure :
1486- """
1487- *choropleth_mapbox* is deprecated! Use *choropleth_map* instead.
1488- Learn more at: https://plotly.com/python/mapbox-to-maplibre/
1489- In a Mapbox choropleth map, each row of `data_frame` is represented by a
1490- colored region on a Mapbox map.
1491- """
1492- warn (
1493- "*choropleth_mapbox* is deprecated!"
1494- + " Use *choropleth_map* instead."
1495- + " Learn more at: https://plotly.com/python/mapbox-to-maplibre/" ,
1496- stacklevel = 2 ,
1497- category = DeprecationWarning ,
1498- )
1499- return make_figure (args = locals (), constructor = go .Choroplethmapbox )
1500-
1501-
1502- choropleth_mapbox .__doc__ = make_docstring (choropleth_mapbox )
1503-
1504-
1505- def density_mapbox (
1506- data_frame = None ,
1507- lat = None ,
1508- lon = None ,
1509- z = None ,
1510- hover_name = None ,
1511- hover_data = None ,
1512- custom_data = None ,
1513- animation_frame = None ,
1514- animation_group = None ,
1515- category_orders = None ,
1516- labels = None ,
1517- color_continuous_scale = None ,
1518- range_color = None ,
1519- color_continuous_midpoint = None ,
1520- opacity = None ,
1521- zoom = 8 ,
1522- center = None ,
1523- mapbox_style = None ,
1524- radius = None ,
1525- title = None ,
1526- subtitle = None ,
1527- template = None ,
1528- width = None ,
1529- height = None ,
1530- ) -> go .Figure :
1531- """
1532- *density_mapbox* is deprecated! Use *density_map* instead.
1533- Learn more at: https://plotly.com/python/mapbox-to-maplibre/
1534- In a Mapbox density map, each row of `data_frame` contributes to the intensity of
1535- the color of the region around the corresponding point on the map
1536- """
1537- warn (
1538- "*density_mapbox* is deprecated!"
1539- + " Use *density_map* instead."
1540- + " Learn more at: https://plotly.com/python/mapbox-to-maplibre/" ,
1541- stacklevel = 2 ,
1542- category = DeprecationWarning ,
1543- )
1544- return make_figure (
1545- args = locals (), constructor = go .Densitymapbox , trace_patch = dict (radius = radius )
1546- )
1547-
1548-
1549- density_mapbox .__doc__ = make_docstring (density_mapbox )
1550-
1551-
1552- def line_mapbox (
1553- data_frame = None ,
1554- lat = None ,
1555- lon = None ,
1556- color = None ,
1557- text = None ,
1558- hover_name = None ,
1559- hover_data = None ,
1560- custom_data = None ,
1561- line_group = None ,
1562- animation_frame = None ,
1563- animation_group = None ,
1564- category_orders = None ,
1565- labels = None ,
1566- color_discrete_sequence = None ,
1567- color_discrete_map = None ,
1568- zoom = 8 ,
1569- center = None ,
1570- mapbox_style = None ,
1571- title = None ,
1572- subtitle = None ,
1573- template = None ,
1574- width = None ,
1575- height = None ,
1576- ) -> go .Figure :
1577- """
1578- *line_mapbox* is deprecated! Use *line_map* instead.
1579- Learn more at: https://plotly.com/python/mapbox-to-maplibre/
1580- In a Mapbox line plot, each row of `data_frame` is represented as
1581- a vertex of a polyline mark on a Mapbox map.
1582- """
1583- warn (
1584- "*line_mapbox* is deprecated!"
1585- + " Use *line_map* instead."
1586- + " Learn more at: https://plotly.com/python/mapbox-to-maplibre/" ,
1587- stacklevel = 2 ,
1588- category = DeprecationWarning ,
1589- )
1590- return make_figure (args = locals (), constructor = go .Scattermapbox )
1591-
1592-
1593- line_mapbox .__doc__ = make_docstring (line_mapbox )
1594-
1595-
15961409def scatter_matrix (
15971410 data_frame = None ,
15981411 dimensions = None ,
0 commit comments