6

我想关闭谷歌地图上的道路/高速公路标记。我查看了https://developers.google.com/maps/documentation/javascript/reference#MapTypeStyleFeatureType并在http://gmaps-samples-v3.googlecode.com/svn/trunk/styledmaps/wizard/上使用了向导索引.html。但是,我选择的任何选项都没有关闭道路/高速公路标记。理想情况下,我想添加自己的路径(例如航空公司航班),但道路标记会将它们扔掉。

使用向导,我得到了这个: http://maps.googleapis.com/maps/api/staticmap?center=42.629586,-83.822497&zoom=9&format=png&sensor=false&size=640x480&maptype=roadmap&style=feature:administrative.country|visibility:开启&style=hue:0x0099ff&style=element:labels|hue:0xff0000。我喜欢这个,但我想关闭所有的道路标记。任何人都知道如何转向这样做。

谢谢,比尔N

4

1 回答 1

9

您可以使用样式生成器移除道路或道路标签。如果您使用的是 V3 javascript api。样式 JSON 看起来像

[ { featureType: "road", stylers: [ { visibility: "off" } ] },{ } ]

这是一个没有道路的静态链接。

http://maps.googleapis.com/maps/api/staticmap?center=45.95115,-113.884277&zoom=7&format=png&sensor=false&size=640x480&maptype=roadmap&style=feature:road|visibility:off

于 2012-05-25T21:00:59.110 回答