googlemaps / googlemaps/google-maps-services-python

Static maps style only accepts a dict instead of a list of dict

オープン
#514 コメント 2 件 リアクション 4 件 担当者 0 名 GitHub で見る
triage me type: bug
主要言語
Python
スター
5k
フォーク
1.4k
PR マージ指標
30日以内にマージされた PR はありません

説明

I am trying to create a static map with different styles. I would like to turn some poi features off and others on. However, the current approach only accepts a dict and only renders one feature set.

In here (https://github.com/googlemaps/google-maps-services-python/blob/master/googlemaps/maps.py), style is supposed to accept list of dict. However, convert (https://github.com/googlemaps/google-maps-services-python/blob/master/googlemaps/convert.py#L208) only accepts a dict.

---

#### Steps to reproduce

#### Code example

```python
for chunk in gmaps.static_map(
size=(1024, 1024),
center=base_address_location,
style=[
{
"feature": "poi.business",
"visibility": "off",
},
{
"feature": "poi.schools",
"visibility": "off",
},
{
"feature": "poi.restaurants",
"visibility": "on",
},
],
zoom=15,
format="png",
markers=marker,
maptype="roadmap",
):
if chunk:
f.write(chunk)
f.close()
```

#### Stack trace
```
raise TypeError(
TypeError: Expected a dict for components, but got list
```

コントリビューションガイド

コントリビューションガイドを開く

評価

この issue はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。