Plotly Scattermapbox。有没有办法在标记的上方和下方加入一些文字?

问题描述 投票:0回答:1

在Plotly中,使用Scattermapbox,是否有办法在标记上方和下方显示一些文本?

目前,只有当我将鼠标悬停在标记上时,文字才会出现,而绘图中只显示了我想显示的部分文字。

enter image description here

我的输入数据框 df_area 是这样的。我想把这两部分的文字都显示出来。name 栏目中,并在 forecast 列。

     name   latitude   longitude    forecast
 0   "AK"   2.675000   203.139000   "Cloudy"
 1   "Bd"   2.621000   203.224000   "Cloudy"

然而,我目前只能显示在 forecast 列。

fig = go.Figure(go.Scattermapbox(
        lat=df_area["latitude"],
        lon=df_area["longitude"],
        mode="markers+text",
        marker={"size": 10},
        text=df_area["forecast"]))
python plotly mapbox
1个回答
0
投票

我在下面附上了一个例子,请注意,这需要一个(免费的)mapbox访问令牌。

import plotly.graph_objects as go
import pandas as pd

mapbox_access_token = 'your-free-token'

df = pd.DataFrame({'name': ['London', 'Oxford'],
                   'latitude': [51.509865, 51.7520],
                   'longitude': [-0.118092, -1.2577],
                   'forecast': ['Cloudy', 'Sunny']})

data = go.Scattermapbox(lat=list(df['latitude']),
                        lon=list(df['longitude']),
                        mode='markers+text',
                        marker=dict(size=20, color='green'),
                        textposition='top right',
                        textfont=dict(size=16, color='black'),
                        text=[df['name'][i] + '<br>' + df['forecast'][i] for i in range(df.shape[0])])

layout = dict(margin=dict(l=0, t=0, r=0, b=0, pad=0),
              mapbox=dict(accesstoken=mapbox_access_token,
                          center=dict(lat=51.6, lon=-0.2),
                          style='light',
                          zoom=8))

fig = go.Figure(data=data, layout=layout)

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.