更改样式化Google地图的样式

时间:2015-06-27 17:46:45

标签: jquery-mobile jquery-ui-map google-maps-styled

我想更改Google地图的样式。我正在使用jQuery-UI-Map,但我无法弄清楚如何。

这是我现在使用的代码:

$(document).ready(function(){
    $("#changeMap").click(function(){
        alert('About to change style...');
        $('#map_canvas').gmap({styles: mapStyleRed});
    });
});

正在触发消息框,但地图未更新为我的“mapStyleRed”。

1 个答案:

答案 0 :(得分:0)

在发布问题几分钟后找到答案总是很好......

$(document).ready(function(){
    $("#changeMap").click(function(){
        alert('About to change style...');
        $('#map_canvas').gmap('get','map').setOptions({styles: mapStyleRed});
    });
});