我目前正在尝试自定义Google地图。
我通过API(http://www.achimsagner.de/test/klysz/)设置了地图,但由于我使用了InfoBox,因此我的样式无法加载。 (http://www.achimsagner.de/test/gmaps_test.html)
我找不到自己的错误,也许有人可以帮助我。
答案 0 :(得分:2)
将样式添加到myMapOptions
var myMapOptions = {
zoom: 16,
center: secheltLoc,
styles : styles,
disableDefaultUI: true,
scrollwheel: false
}
答案 1 :(得分:0)
应用样式的页面包含不在页面上不存在的这些行:
//Associate the styled map with the MapTypeId and set it to display.
theMap.mapTypes.set('map_style', styledMap);
theMap.setMapTypeId('map_style');