Invalid property specified for object of type plotly.graph_objs.scattermap.Textfont: 'shadow'
オープン
まだ誰も着手していません。
feature
P3
- 主要言語
- JavaScript
- スター
- 18.3k
- フォーク
- 2k
- 平均マージ
- 2日 12時間
- マージ済み PR(30日)
- 28
説明
Hello,
First, thank you for your work.
It seems like the text "shadow" parameter (here in the doc) is missing for go.Scattermap objects.
Without this parameter, we are unable to create visible labels on maps: this is the same problem as report here.
Here is an example of the problem and why border/shadow is required:
Here is a minimum reproducible code
import plotly.graph_objects as go
# Sample data
data = {
"label": ["New York", "Los Angeles", "Chicago"],
"latitude": [40.7128, 34.0522, 41.8781],
"longitude": [-74.0060, -118.2437, -87.6298]
}
# Create a Scattermapbox trace
go.Figure(
go.Scattermap(
lat=data["latitude"],
lon=data["longitude"],
text=data["label"],
textfont={
"color": "white",
"size": 12,
#"shadow": "1px 1px 1px black" # THIS IS THE ISSUE
},
mode="text",
)
)
# Update layout to include a map style and center
fig.update_layout(
map=dict(
style="open-street-map",
center=dict(lat=37.0902, lon=-95.7129), # Centered over the USA
zoom=3
),
margin={"r":0,"t":0,"l":0,"b":0}
)
fig.show()
Result :
This time the labels are white and require black shadow/border to be visible.
Plotly version: 5.24.0
python version: 5.11.11
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
調査の方向性
Scattermap の textfont サポートから始め、text-and-annotations のドキュメントおよびリンクされた plotly.js issue と比較します。白いラベルを使った例を再現し、続いて shadow に期待される動作を特定し、shadow プロパティが受け入れられ、ラベルが見えるようになることを検証します。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- javascript
- 領域
- data-visualization
- issue の種類
- バグ
- 難易度
- 4/5
- 見積もり時間
- 3〜5日
- 活発さ
- 停滞
- 明瞭さ
- おおむね明確
- 初心者へのやさしさ
- 35/100