是否可以在自定义地图上显示默认的Google地图图标和弹出窗口?
默认的地址,附近的标题说明等等。
这就是我目前如何设置并在标记之外正常工作..
var map;
jQuery(function($) {
function initialize() {
var styles = [
{
stylers: [
{ "saturation": -100 }
]
}
];
var styledMap = new google.maps.StyledMapType(styles,
{name: "Styled Map"});
var mapOptions = {
zoom: 11,
center: new google.maps.LatLng(55.6468, 37.581),
mapTypeControlOptions: {
mapTypeIds: [google.maps.MapTypeId.ROADMAP, 'map_style']
}
};
var map = new google.maps.Map(document.getElementById('map'),
mapOptions);
//Associate the styled map with the MapTypeId and set it to display.
map.mapTypes.set('map_style', styledMap);
map.setMapTypeId('map_style');
}
google.maps.event.addDomListener(window, 'load', initialize);
});
答案 0 :(得分:0)
是否可以在自定义地图上显示默认的Google地图图标和弹出窗口?
默认标记很简单,请参阅the documentation,但Google地图默认信息窗口的答案为否,但您可以创建自己的infowindow看起来类似且具有类似功能。