我刚刚开始学习v3 API,并且正在尝试了解如何在构造时设置默认地图的样式。 documentation有点模糊(或者我太过于理解它了)我似乎找不到任何关于如何将地图样式添加到MapOptions对象的示例代码。
有人可以展示如何直接在mapOptions中添加样式吗?
答案 0 :(得分:0)
您是否尝试过styles
对象的MapOptions
属性?
var map = new google.maps.Map(document.getElementById("map_canvas"),
{center: new google.maps.LatLng(0,0),
styles: [{featureType:"administrative", elementType:"all", stylers:[{hue:"#dae6c3"},{saturation:22},{lightness:-5}]}]
});
文档位于http://code.google.com/apis/maps/documentation/javascript/reference.html。
(编辑修复小语法错误)