我目前正在嘗試自定義Google地圖。Google地圖自定義樣式不起作用
我通過API(http://www.achimsagner.de/test/klysz/)設計了我的地圖,但由於我使用了InfoBox,因此我的樣式將無法加載。 (http://www.achimsagner.de/test/gmaps_test.html)
我只是找不到我的錯誤,也許有人可以幫助我。
我目前正在嘗試自定義Google地圖。Google地圖自定義樣式不起作用
我通過API(http://www.achimsagner.de/test/klysz/)設計了我的地圖,但由於我使用了InfoBox,因此我的樣式將無法加載。 (http://www.achimsagner.de/test/gmaps_test.html)
我只是找不到我的錯誤,也許有人可以幫助我。
添加樣式到您的myMapOptions
var myMapOptions = {
zoom: 16,
center: secheltLoc,
styles : styles,
disableDefaultUI: true,
scrollwheel: false
}
適用風格的頁面包含這些行不存在不適用的網頁上:
//Associate the styled map with the MapTypeId and set it to display.
theMap.mapTypes.set('map_style', styledMap);
theMap.setMapTypeId('map_style');
謝謝!不知道我怎麼弄不明白。 –