【发布时间】:2018-04-12 13:56:48
【问题描述】:
我已将我的地图嵌入网站,现在我想将谷歌地图的颜色更改为 dark,如谷歌地图中所示。我正在尝试这样做,但不知道在哪里给出我必须应用的样式
我的初始化映射代码是。我想我必须改变这一点
_initMap: function() {
var self= this, options = this.options,
centerPosition = new google.maps.LatLng(options.latitude, options.longitude);
/**
* map
* @type {google.maps.Map}
*/
this.map = new google.maps.Map(this.element[0], {
zoom: parseFloat(options.zoom_level),
center: centerPosition,
minZoom: options.minZoom,
maxZoom: options.maxZoom
});
this.storePopupTmpl = mageTemplate($(options.storePopupTemplate).html());
/**
* infor windopw
* @type {google.maps.InfoWindow}
*/
this.infowindow = new google.maps.InfoWindow({
//maxWidth: 250,
//disableAutoPan: true,
maxWidth: 450,
minWidth: 350,
});
编辑我是按照这个来做的
https://mapstyle.withgoogle.com/
【问题讨论】:
标签: google-maps google-maps-api-3 maps google-maps-api-2