静态 google 地图中未显示标记
Markers are not shown in static google map
我有 google 静态地图 url 这样有多个标记。
https://maps.googleapis.com/maps/api/staticmap?size=1100x795&markers=color:red|label:S|45.459041,-98.430198&markers=color:red|label:S|45.469042,-98.430199&markers=color:red%7Clabel:S%7C40.702147,-74.015794&markers=color:red%7Clabel:G%7C40.711614,-74.012318&markers=color:red%7Clabel:C%7C40.718217,-73.998284
但在地图中只显示了 2 个标记。
我什至尝试在 url 中添加这些参数,但它仍然只在我的地图中显示 2 个标记。
&maptype=roadmap
&sensor=fasle
这里有什么错误?有人可以帮助我吗?
谢谢
这是因为标记的距离。前两个标记彼此靠近,其他三个标记也彼此靠近,但前两个标记与后三个标记相对较远。我尝试分别获取静态地图并分别请求前两个和后三个,并相应地显示标记。我猜是因为标记重叠的距离。
fiddle of Google Maps Javascript API v3 map showing the same markers(导航到标记以查看发生了什么)
前两个要求:
https://maps.googleapis.com/maps/api/staticmap?size=1100x795&markers=color:red|label:S|45.459041,-98.430198&markers=color:red|label:S|45.469042,-98.430199
后三项要求:
https://maps.googleapis.com/maps/api/staticmap?size=1100x795&markers=color:red%7Clabel:S%7C40.702147,-74.015794&markers=color:red%7Clabel:G%7C40.711614,-74.012318&markers=color:red%7Clabel:C%7C40.718217,-73.998284
我有 google 静态地图 url 这样有多个标记。
https://maps.googleapis.com/maps/api/staticmap?size=1100x795&markers=color:red|label:S|45.459041,-98.430198&markers=color:red|label:S|45.469042,-98.430199&markers=color:red%7Clabel:S%7C40.702147,-74.015794&markers=color:red%7Clabel:G%7C40.711614,-74.012318&markers=color:red%7Clabel:C%7C40.718217,-73.998284
但在地图中只显示了 2 个标记。
我什至尝试在 url 中添加这些参数,但它仍然只在我的地图中显示 2 个标记。
&maptype=roadmap
&sensor=fasle
这里有什么错误?有人可以帮助我吗?
谢谢
这是因为标记的距离。前两个标记彼此靠近,其他三个标记也彼此靠近,但前两个标记与后三个标记相对较远。我尝试分别获取静态地图并分别请求前两个和后三个,并相应地显示标记。我猜是因为标记重叠的距离。
fiddle of Google Maps Javascript API v3 map showing the same markers(导航到标记以查看发生了什么)
前两个要求:
https://maps.googleapis.com/maps/api/staticmap?size=1100x795&markers=color:red|label:S|45.459041,-98.430198&markers=color:red|label:S|45.469042,-98.430199
后三项要求:
https://maps.googleapis.com/maps/api/staticmap?size=1100x795&markers=color:red%7Clabel:S%7C40.702147,-74.015794&markers=color:red%7Clabel:G%7C40.711614,-74.012318&markers=color:red%7Clabel:C%7C40.718217,-73.998284