我想更改Google地图的样式。我正在使用jQuery-UI-Map,但我无法弄清楚如何。
这是我现在使用的代码:
$(document).ready(function(){
$("#changeMap").click(function(){
alert('About to change style...');
$('#map_canvas').gmap({styles: mapStyleRed});
});
});
正在触发消息框,但地图未更新为我的“mapStyleRed”。
答案 0 :(得分:0)
在发布问题几分钟后找到答案总是很好......
$(document).ready(function(){
$("#changeMap").click(function(){
alert('About to change style...');
$('#map_canvas').gmap('get','map').setOptions({styles: mapStyleRed});
});
});