我想在样式更改后刷新谷歌地图。
我正在关注这个基本样式示例
但是,在通过以下方式设置后,我如何交换/刷新/重新加载新样式:
// Enable the visual refresh
google.maps.visualRefresh = true;
function setMapStyle(mapStyle)
{
map.setOptions({styles: mapStyle});
}
也许可以在样式选项上添加监听器?
我想在样式更改后刷新谷歌地图。
我正在关注这个基本样式示例
但是,在通过以下方式设置后,我如何交换/刷新/重新加载新样式:
// Enable the visual refresh
google.maps.visualRefresh = true;
function setMapStyle(mapStyle)
{
map.setOptions({styles: mapStyle});
}
也许可以在样式选项上添加监听器?