Я слишком слаб в написании JS.Мне нужно построить и настроить карту Google.Для этого я использую плагин 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