3

我写js太弱了。我需要构建和自定义谷歌地图。为此,我确实使用了 jquery-ui-map 插件和以下代码:

if ($("#map_canvas").length){
$('#map_canvas').gmap().bind('init', function(ev, map) {
    $("[data-gmapping]").each(function(i,el) {
        var data = $(el).data('gmapping');
        $('#map_canvas').gmap('addMarker', {'id': data.id, 'tags':data.tags, 'position': new google.maps.LatLng(data.latlng.lat, data.latlng.lng), 'bounds':true }, function(map,marker) {

            $(el).click(function() {
                $(marker).triggerEvent('click');
            });
            }).click(function() {
                $('#map_canvas').gmap('openInfoWindow', { 'content': $(el).find('.info-box').html() }, this);
            });
    }); 
});
}

我必须在哪里放入这个生成的变量:

{ stylers: [ { lightness: 7 }, { saturation: -100 } ] }

我使用的链接: http ://code.google.com/p/jquery-ui-map/ http://gmaps-samples-v3.googlecode.com/svn/trunk/styledmaps/wizard/index.html

4

1 回答 1

4

有很多地方可以放置它,例如地图的实例化:

现在:

$('#map_canvas').gmap()  //...more code

然后:

$('#map_canvas').gmap({styles:[{stylers:[{lightness:7},{saturation:-100}]}]})  //...more code

gmap-constructor 接受所有接受的选项google.maps.Map.setOptions()。其中一个选项是“样式”,它应该是一个带有google.maps.MapTypeStyle's 的数组(您生成的输出是 MapTypeStyle)

于 2012-03-25T22:40:21.513 回答