').append(popupTemplatePolygon);
+ if (!settings.richtextEditor) {
+ contentObj.find("textarea").removeClass("richtext-fix");
+ }
+
+ break;
+ case google.maps.drawing.OverlayType.RECTANGLE:
+ position = location.Overlay.getBounds().getCenter();
+ contentObj = $('
').append(popupTemplateRectangle);
+ if (!settings.richtextEditor) {
+ contentObj.find("textarea").removeClass("richtext-fix");
+ }
+ break;
+ }
+ if (contentObj != null && settings.editMode) {
+ map.infoWindow.setContent(contentObj.html());
+ }
+ else {
+ map.infoWindow.setContent($("
").append($("
", { class: "popup-message" }).html(location.Message)).html());
+ }
+
+ google.maps.event.addListener(map.infoWindow, 'domready', function () {
+ $(map.container).find('.popup-content textarea').val(map.activeLocation.Message);
+ $(map.container).find('.popup-content input[name="locationLat"]').val(position.lat());
+ $(map.container).find('.popup-content input[name="locationLng"]').val(position.lng());
+ $(map.container).find('.popup-content input[name="centerLat"]').val(position.lat());
+ $(map.container).find('.popup-content input[name="centerLng"]').val(position.lng());
+ $(map.container).find('.popup-content input[name="borderWidth"]').val(location.BorderWeight);
+ $(map.container).find('.popup-content input[name="radius"]').val(location.Radius);
+ var markerIconsList = $(map.container).find('.popup-content select[name="icon"]');
+ if (markerIconsList.length > 0 && settings.markerPinFiles.length > 0) {
+ for (i = 0; i < settings.markerPinFiles.length; i++) {
+ markerIconsList.append($('
', {
+ value: settings.markerPinsPath + settings.markerPinFiles[i],
+ text: settings.markerPinFiles[i]
+ }));
+ }
+ markerIconsList.find('option').each(function () {
+ if ($(this).text() == location.Icon) {
+ $(this).prop('selected', true);
+ }
+ });
+ }
+ else {
+ markerIconsList.parent().parent().remove();
+ }
+
+ var markerHoverIconsList = $(map.container).find('.popup-content select[name="hover-icon"]');
+ if (markerHoverIconsList.length > 0 && settings.markerPinFiles.length > 0) {
+ for (i = 0; i < settings.markerPinFiles.length; i++) {
+ markerHoverIconsList.append($(' ', {
+ value: settings.markerPinsPath + settings.markerPinFiles[i],
+ text: settings.markerPinFiles[i]
+ }));
+ }
+ markerHoverIconsList.find('option').each(function () {
+ if ($(this).text() == location.HoverIcon) {
+ $(this).prop('selected', true);
+ }
+ });
+ }
+ else {
+ markerHoverIconsList.parent().parent().remove();
+ }
+
+ var borderColorInput = $(map.container).find('.popup-content input[name="strokeColor"]');
+ var fillColorInput = $(map.container).find('.popup-content input[name="fillColor"]');
+ var borderColorInputPicker = $(map.container).find('.popup-content input[name="strokeColorPicker"]');
+ var fillColorInputPicker = $(map.container).find('.popup-content input[name="fillColorPicker"]');
+
+ borderColorInput.val(map.activeLocation.BorderColor);
+ borderColorInputPicker.val(map.activeLocation.BorderColor);
+ borderColorInputPicker.height(borderColorInput.outerHeight());
+ borderColorInputPicker.width(borderColorInput.outerHeight());
+
+ fillColorInput.val(map.activeLocation.FillColor);
+ fillColorInputPicker.val(map.activeLocation.FillColor);
+ fillColorInputPicker.height(fillColorInput.outerHeight());
+ fillColorInputPicker.width(fillColorInput.outerHeight());
+
+ if (isIE()) {
+ borderColorInput.simpleColorPicker();
+ fillColorInput.simpleColorPicker();
+ }
+ else {
+ fillColorInputPicker.change(function () {
+ fillColorInput.val($(this).val());
+ });
+ fillColorInput.change(function () {
+ fillColorInputPicker.val($(this).val());
+ });
+
+ borderColorInputPicker.change(function () {
+ borderColorInput.val($(this).val());
+ });
+ borderColorInput.change(function () {
+ borderColorInputPicker.val($(this).val());
+ });
+ }
+ if (settings.richtextEditor) {
+ intTinyMce();
+ }
+ initPopupButtons(map);
+ });
+ if (position != null && type != google.maps.drawing.OverlayType.MARKER) {
+ map.infoWindow.setPosition(position);
+ map.infoWindow.open(map);
+ }
+ else {
+ map.infoWindow.open(map, location.Overlay);
+ }
+
+ if (settings.locationClick != null && typeof (settings.locationClick) == "function") {
+ settings.locationClick(map, location);
+ }
+
+ });
+ }
+
+ function updateLocationObject(map, location, type, showBallonInfo) {
+ var coordinates = [];
+ if ($('.popup-content').length > 0) {
+ if (typeof tinymce != 'undefined') {
+ tinyMCE.triggerSave();
+ }
+ location.Message = $(map.container).find('.popup-content textarea').val();
+ location.BorderColor = $('.popup-content input[name="strokeColor"]').val();
+ location.FillColor = $('.popup-content input[name="fillColor"]').val();
+ location.BorderWeight = $('.popup-content input[name="borderWidth"]').val();
+ if (type != google.maps.drawing.OverlayType.MARKER) {
+ location.Overlay.setOptions({
+ strokeColor: location.BorderColor,
+ strokeWeight: location.BorderWeight
+ });
+ if (type != google.maps.drawing.OverlayType.POLYLINE) {
+ location.Overlay.setOptions({
+ fillColor: location.FillColor
+ });
+ }
+ }
+ }
+ switch (type) {
+ case google.maps.drawing.OverlayType.MARKER:
+ location.Coordinates.length = 0;
+ location.Coordinates.push(new Coordinate(location.Overlay.getPosition().lat(), location.Overlay.getPosition().lng()));
+ if ($('select[name="icon"]').length > 0) {
+ var iconFile = $('select[name="icon"] :selected').text();
+ if (iconFile == "default") {
+ location.Icon = null;
+ location.Overlay.setIcon(null);
+ }
+ else {
+ location.Icon = iconFile;
+ location.Overlay.setIcon(settings.markerPinsPath + location.Icon);
+ }
+
+ var hoverIconFile = $('select[name="hover-icon"] :selected').text();
+ if (iconFile == "none") {
+ location.HoverIcon = null;
+ }
+ else {
+ location.HoverIcon = hoverIconFile;
+ }
+
+ location.Coordinates[0].Latitude = parseFloat($('.popup-content input[name="locationLat"]').val());
+ location.Coordinates[0].Longitude = parseFloat($('.popup-content input[name="locationLng"]').val());
+
+ location.Overlay.setPosition(new google.maps.LatLng(location.Coordinates[0].Latitude, location.Coordinates[0].Longitude));
+
+ }
+
+ break;
+ case google.maps.drawing.OverlayType.CIRCLE:
+
+ if ($('.popup-content input[name="radius"]').length > 0) {
+
+
+ location.Radius = parseFloat($('.popup-content input[name="radius"]').val());
+
+ google.maps.event.clearListeners(location.Overlay, 'radius_changed');
+ location.Overlay.setRadius(location.Radius);
+
+ google.maps.event.addListener(location.Overlay, 'radius_changed', function (index, obj) {
+ updateLocationObject(map, location, type, true);
+ });
+
+ }
+ else {
+ location.Radius = location.Overlay.getRadius();
+ }
+
+ if ($('.popup-content input[name="centerLat"]').length > 0 && $('.popup-content input[name="centerLng"]').length > 0) {
+
+ google.maps.event.clearListeners(location.Overlay, 'center_changed');
+ location.Overlay.setCenter(new google.maps.LatLng(parseFloat($('.popup-content input[name="centerLat"]').val()), parseFloat($('.popup-content input[name="centerLng"]').val())));
+ google.maps.event.addListener(location.Overlay, 'center_changed', function (index, obj) {
+ updateLocationObject(map, location, type, true);
+ });
+ location.Coordinates.length = 0;
+ location.Coordinates.push(new Coordinate(location.Overlay.getCenter().lat(), location.Overlay.getCenter().lng()));
+
+ }
+ else {
+ location.Coordinates.length = 0;
+ location.Coordinates.push(new Coordinate(location.Overlay.getCenter().lat(), location.Overlay.getCenter().lng()));
+ }
+ break;
+ case google.maps.drawing.OverlayType.POLYLINE:
+ for (i = 0; i < location.Overlay.getPath().length; i++) {
+ coordinates.push(new Coordinate(location.Overlay.getPath().getAt(i).lat(), location.Overlay.getPath().getAt(i).lng()))
+ }
+ location.Coordinates = coordinates;
+ break;
+ case google.maps.drawing.OverlayType.POLYGON:
+ for (i = 0; i < location.Overlay.getPath().length; i++) {
+ coordinates.push(new Coordinate(location.Overlay.getPath().getAt(i).lat(), location.Overlay.getPath().getAt(i).lng()))
+ }
+ location.Coordinates = coordinates;
+ break;
+ case google.maps.drawing.OverlayType.RECTANGLE:
+ coordinates.push(new Coordinate(location.Overlay.getBounds().getNorthEast().lat(), location.Overlay.getBounds().getNorthEast().lng()));
+ coordinates.push(new Coordinate(location.Overlay.getBounds().getSouthWest().lat(), location.Overlay.getBounds().getSouthWest().lng()));
+ location.Coordinates = coordinates;
+ break;
+ }
+ if (map.activeLocation != null && showBallonInfo) {
+
+ if (map.infoWindow != null) {
+ map.infoWindow.close();
+ }
+ }
+ saveToJson(map);
+ }
+
+ function initPopupButtons(map) {
+ var deleteButton = $(map.container).find(".btn-popup-delete");
+ deleteButton.off("click");
+ deleteButton.click(function () {
+ if (confirm("Delete this location?")) {
+ map.activeLocation.Overlay.setMap(null);
+ map.locations.splice(map.locations.indexOf(map.activeLocation), 1);
+ map.activeLocation = null;
+ saveToJson(map);
+ map.infoWindow.close();
+ if (settings.locationDelete != null && typeof (settings.locationDelete) == "function") {
+ settings.locationDelete(map, location);
+ }
+ }
+ });
+
+ var cancelButton = $(map.container).find(".btn-popup-cancel");
+ cancelButton.off("click");
+ cancelButton.click(function () {
+ if ($('.popup-content [name="changed"]').val() === 'true') {
+ if (confirm("Cancel changes?")) {
+ map.infoWindow.close();
+ }
+ }
+ else {
+ map.infoWindow.close();
+ }
+ });
+
+ var saveButton = $(map.container).find(".btn-popup-save");
+ saveButton.off("click");
+ saveButton.click(function () {
+ handleMapCloseClick(map, map.activeLocation.LocationType);
+ map.infoWindow.close();
+ });
+
+ $('.popup-content input[type="text"],.popup-content input[type="number"],.popup-content input[type="color"],.popup-content select,.popup-content textarea').change(function () {
+ $('.popup-content input[name="changed"]').val(true);
+ });
+
+ }
+
+ function isIE() {
+ var ua = window.navigator.userAgent;
+ var msie = ua.indexOf("MSIE ");
+
+ if (msie > 0 || !!navigator.userAgent.match(/Trident.*rv\:11\./)) {
+ return true;
+ }
+ else {
+ return false;
+ }
+ }
+
+ function intTinyMce() {
+ if (typeof tinymce == 'undefined') {
+ $.getScript(tinyMceUrl, function () {
+ tinymce.init({
+ selector: ".popup-content textarea",
+ plugins: ["code image link media table textcolor"],
+ resize: false,
+ toolbar: "bold italic | forecolor | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link | code",
+ menubar: false,
+ statusbar: false
+ });
+ });
+ }
+ else {
+ tinymce.init({
+ selector: ".popup-content textarea",
+ plugins: ["code image link media table textcolor"],
+ resize: false,
+ toolbar: "bold italic | forecolor | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link | code",
+ menubar: false,
+ statusbar: false
+ });
+ }
+ }
+
+
+ function getMapLocationsBounds(map) {
+ if (map.locations != null && map.locations.length > 0) {
+ var mapLocationBounds = new google.maps.LatLngBounds();
+ for (i = 0; i < map.locations.length; i++) {
+ for (j = 0; j < map.locations[i].Coordinates.length; j++) {
+ mapLocationBounds.extend(new google.maps.LatLng(map.locations[i].Coordinates[j].Latitude, map.locations[i].Coordinates[j].Longitude));
+ }
+ }
+ return mapLocationBounds;
+ }
+ return null;
+ }
+
+ function getPolyLineCenter(polyline) {
+ var i = parseInt(polyline.getPath().getLength() / 2);
+ return new google.maps.LatLng(polyline.getPath().getAt(i).lat(), polyline.getPath().getAt(i).lng());
+ }
+
+ function getPolygonCenter(polygon) {
+ var bounds = new google.maps.LatLngBounds();
+
+ for (i = 0; i < polygon.getPath().getLength() ; i++) {
+ bounds.extend(new google.maps.LatLng(polygon.getPath().getAt(i).lat(),
+ polygon.getPath().getAt(i).lng()));
+ }
+ return bounds.getCenter();
+ }
+
+ function createUUID() {
+ /* http://www.ietf.org/rfc/rfc4122.txt */
+ var s = [];
+ var hexDigits = "0123456789abcdef";
+ for (var i = 0; i < 36; i++) {
+ s[i] = hexDigits.substr(Math.floor(Math.random() * 0x10), 1);
+ }
+ s[14] = "4"; /* bits 12-15 of the time_hi_and_version field to 0010 */
+ s[19] = hexDigits.substr((s[19] & 0x3) | 0x8, 1); /* bits 6-7 of the clock_seq_hi_and_reserved to 01 */
+ s[8] = s[13] = s[18] = s[23] = "";
+
+ var uuid = s.join("");
+ return uuid;
+ }
+
+ function htmlEncode(value) {
+ return $('
').text(value).html();
+ }
+
+ function htmlDecode(value) {
+ return $('
').html(value).text();
+ }
+
+ /* OBJECT DEFINITIONS START*/
+
+ function Location(coordinates, locationtype, message) {
+ this.Coordinates = coordinates;
+ this.LocationType = locationtype;
+ this.Icon = null;
+ this.Message = message;
+ this.Overlay = null;
+ this.Radius = 0;
+ this.BorderColor = settings.drawingBorderColor;
+ this.BorderWeight = settings.drawingBorderWidth;
+ this.FillColor = settings.drawingFillColor;
+ this.Tag = null;
+ }
+
+ function Coordinate(latitude, longitude) {
+ this.Latitude = latitude;
+ this.Longitude = longitude;
+ }
+}
+
+/* Simple color picker https://github.com/rachel-carvalho/simple-color-picker */
+$.fn.simpleColorPicker = function (options) {
+ var defaults = {
+ colorsPerLine: 8,
+ colors: ['#000000', '#444444', '#666666', '#999999', '#cccccc', '#eeeeee', '#f3f3f3', '#ffffff'
+ , '#ff0000', '#ff9900', '#ffff00', '#00ff00', '#00ffff', '#0000ff', '#9900ff', '#ff00ff'
+ , '#f4cccc', '#fce5cd', '#fff2cc', '#d9ead3', '#d0e0e3', '#cfe2f3', '#d9d2e9', '#ead1dc'
+ , '#ea9999', '#f9cb9c', '#ffe599', '#b6d7a8', '#a2c4c9', '#9fc5e8', '#b4a7d6', '#d5a6bd'
+ , '#e06666', '#f6b26b', '#ffd966', '#93c47d', '#76a5af', '#6fa8dc', '#8e7cc3', '#c27ba0'
+ , '#cc0000', '#e69138', '#f1c232', '#6aa84f', '#45818e', '#3d85c6', '#674ea7', '#a64d79'
+ , '#990000', '#b45f06', '#bf9000', '#38761d', '#134f5c', '#0b5394', '#351c75', '#741b47'
+ , '#660000', '#783f04', '#7f6000', '#274e13', '#0c343d', '#073763', '#20124d', '#4C1130'],
+ showEffect: '',
+ hideEffect: '',
+ onChangeColor: false
+ };
+ var opts = $.extend(defaults, options);
+ return this.each(function () {
+ var txt = $(this);
+ var colorsMarkup = '';
+ var prefix = txt.attr('id').replace(/-/g, '') + '_';
+ for (var i = 0; i < opts.colors.length; i++) {
+ var item = opts.colors[i];
+ var breakLine = '';
+ if (i % opts.colorsPerLine == 0)
+ breakLine = 'clear: both; ';
+ if (i > 0 && breakLine && $.browser && $.browser.msie && $.browser.version <= 7) {
+ breakLine = '';
+ colorsMarkup += ' ';
+ }
+ colorsMarkup += ' ';
+ }
+ var box = $('');
+ $('body').append(box);
+ box.hide();
+ box.find('li.color-box').click(function () {
+ if (txt.is('input')) {
+ txt.val(opts.colors[this.id.substr(this.id.indexOf('-') + 1)]);
+ txt.blur();
+ }
+ if ($.isFunction(defaults.onChangeColor)) {
+ defaults.onChangeColor.call(txt, opts.colors[this.id.substr(this.id.indexOf('-') + 1)]);
+ }
+ hideBox(box);
+ });
+ $(document).on('click', 'body', function () {
+ hideBox(box);
+ });
+
+ box.click(function (event) {
+ event.stopPropagation();
+ });
+
+ var positionAndShowBox = function (box) {
+ var pos = txt.offset();
+ var left = pos.left + txt.outerWidth() - box.outerWidth();
+ if (left < pos.left) left = pos.left;
+ box.css({
+ left: left,
+ top: (pos.top + txt.outerHeight())
+ });
+ showBox(box);
+ }
+
+ txt.click(function (event) {
+ event.stopPropagation();
+ if (!txt.is('input')) {
+ /* element is not an input so probably a link or div which requires the color box to be shown */
+ positionAndShowBox(box);
+ }
+ });
+
+ txt.focus(function () {
+ /* Hide all pickers before showing */
+ $(".color-picker").each(function (index) {
+ hideBox($(this));
+ });
+ positionAndShowBox(box);
+ });
+
+ function hideBox(box) {
+ if (opts.hideEffect == 'fade')
+ box.fadeOut();
+ else if (opts.hideEffect == 'slide')
+ box.slideUp();
+ else
+ box.hide();
+ }
+
+ function showBox(box) {
+ if (opts.showEffect == 'fade')
+ box.fadeIn();
+ else if (opts.showEffect == 'slide')
+ box.slideDown();
+ else
+ box.show();
+ }
+ });
+};
diff --git a/web/Scripts/jquery.googlemaps.min.js b/web/Scripts/jquery.googlemaps.min.js
new file mode 100644
index 00000000..b9a0cec8
--- /dev/null
+++ b/web/Scripts/jquery.googlemaps.min.js
@@ -0,0 +1 @@
+$.fn.GoogleMapEditor = function (options) { function addSearchBox(e) { var t = "q" + e.id; $(e.container).parent().prepend(' '); var n = document.getElementById(t); if (n != null) { e.controls[google.maps.ControlPosition.TOP_RIGHT].push(n); var r = new google.maps.places.SearchBox(n); google.maps.event.addListener(r, "places_changed", function () { var t = r.getPlaces(); var n = new google.maps.LatLngBounds; for (var i = 0, s; s = t[i]; i++) { n.extend(s.geometry.location) } e.fitBounds(n); e.setZoom(15) }); google.maps.event.addListener(e, "bounds_changed", function () { var t = e.getBounds(); r.setBounds(t) }) } } function addStylesList(map) { if (settings.editMode) { var selectId = "s" + map.id; $(map.container).parent().prepend(' '); var select = document.getElementById(selectId); $(select).append($(" ", { value: JSON.stringify([]), text: "GoogleMaps Default" })); $.getJSON(settings.stylesPath, function (e) { $(e).each(function (e, t) { $(select).append($(" ", { value: t.json, text: t.name })) }) }); if (select != null) { map.controls[google.maps.ControlPosition.TOP_LEFT].push(select); $(select).change(function () { map.setOptions({ mapTypeId: "Styled" }); var styledMapType = new google.maps.StyledMapType(eval($(this).val()), { name: "Styled" }); map.mapTypes.set("Styled", styledMapType); settings.style = eval($(this).val()); saveToJson(map) }) } } } function addFitBoundsButton(e) { var t = "c" + e.id; $(e.container).parent().prepend(' '); var n = document.getElementById(t); if (n != null) { e.controls[google.maps.ControlPosition.TOP_CENTER].push(n); $(n).click(function () { var t = getMapLocationsBounds(e); if (t != null) { e.fitBounds(t); saveToJson(e) } }) } } function addCurrentLocationButton(e) { var t = "l" + e.id; $(e.container).parent().prepend(' '); var n = document.getElementById(t); if (n != null) { e.controls[google.maps.ControlPosition.TOP_CENTER].push(n); $(n).click(function () { if (navigator.geolocation) { var t = $(e.container).next(); t.width($(e.container).width()); t.height($(e.container).height()); t.offset({ top: $(e.container).offset().top, left: $(e.container).offset().left }); t.fadeIn("slow"); navigator.geolocation.getCurrentPosition(function (n) { t.fadeOut("fast"); if (settings.editMode) { var r = new Location([new Coordinate(n.coords.latitude, n.coords.longitude)], google.maps.drawing.OverlayType.MARKER, "", "", "", "", "", ""); initMapObject(e, r); e.locations.push(r); var i = new google.maps.LatLngBounds(new google.maps.LatLng(r.Coordinates[0].Latitude, r.Coordinates[0].Longitude)); e.fitBounds(i); e.setZoom(15); new google.maps.event.trigger(r.Overlay, "click"); saveToJson(e) } else { var i = new google.maps.LatLngBounds(new google.maps.LatLng(n.coords.latitude, n.coords.longitude)); e.fitBounds(i); e.setZoom(15) } }, function (e) { alert("Unable to fetch your current location!\n" + e); t.fadeOut("fast") }) } }) } } function arePopupTemplatesLoaded() { if (popupTemplateCircle != null && popupTemplateRectangle != null && popupTemplateMarker != null && popupTemplatePolyline != null && popupTemplatePolygon != null) { return true } else { return false } } function loadPopupTemplates() { $.ajax({ url: settings.editTemplatesPath + "popup-template-circle.html", method: "GET", dataType: "text html", success: function (e) { popupTemplateCircle = e } }); $.ajax({ url: settings.editTemplatesPath + "popup-template-rectangle.html", method: "GET", dataType: "text html", success: function (e) { popupTemplateRectangle = e } }); $.ajax({ url: settings.editTemplatesPath + "popup-template-marker.html", method: "GET", dataType: "text html", success: function (e) { popupTemplateMarker = e } }); $.ajax({ url: settings.editTemplatesPath + "popup-template-polyline.html", method: "GET", dataType: "text html", success: function (e) { popupTemplatePolyline = e } }); $.ajax({ url: settings.editTemplatesPath + "popup-template-polygon.html", method: "GET", dataType: "text html", success: function (e) { popupTemplatePolygon = e } }) } function initializeGoogleMapEditor(e) { var t = null; if (settings.editMode) { loadPopupTemplates() } t = new google.maps.Map(e, { center: new google.maps.LatLng(settings.center.latitude, settings.center.longitude), zoom: settings.zoom, zoomControl: settings.zoomControl, panControl: settings.panControl, scaleControl: settings.scaleControl, streetViewControl: settings.streetViewControl, infoWindow: null, styles: settings.style }); t.setOptions({ scrollwheel: settings.scrollWheel }); t.container = e; t.locations = settings.locations.slice(0); t.id = createUUID(); $("
", { "class": "map-overlay" }).append($(" ", { type: "button", value: "Close", "class": "btn-close" })).insertAfter($(t.container)); $(".map-overlay input.btn-close").click(function () { $(this).parent().fadeOut("slow") }); google.maps.event.addListenerOnce(t, "idle", function () { addStylesList(t); addFitBoundsButton(t); addCurrentLocationButton(t); if (settings.searchBox) { addSearchBox(t) } if (t.locations != null && t.locations.length > 0) { for (i = 0; i < t.locations.length; i++) { initMapObject(t, t.locations[i]) } } saveToJson(t) }); google.maps.event.addListenerOnce(t, "center_changed", function () { saveToJson(t) }); google.maps.event.addListenerOnce(t, "zoom_changed", function () { saveToJson(t) }); google.maps.event.addListenerOnce(t, "maptypeid_changed", function () { saveToJson(t) }); google.maps.event.addListenerOnce(t, "dragend", function () { saveToJson(t) }); google.maps.event.addListener(t, "click", function () { if (t.infoWindow != null) { t.infoWindow.close(); t.activeLocation = null } for (i = 0; i < t.locations.length; i++) { t.locations[i].Overlay.set("editable", false) } }); if (settings.editMode) { var n = new google.maps.drawing.DrawingManager({ drawingMode: google.maps.drawing.OverlayType.MARKER, drawingControl: true, polygonOptions: { draggable: settings.editMode, strokeWeight: settings.drawingBorderWidth, strokeColor: settings.drawingBorderColor, fillColor: settings.drawingFillColor }, markerOptions: { draggable: settings.editMode }, polylineOptions: { draggable: settings.editMode, strokeWeight: settings.drawingBorderWidth, strokeColor: settings.drawingBorderColor, fillColor: settings.drawingFillColor }, circleOptions: { draggable: settings.editMode, strokeWeight: settings.drawingBorderWidth, strokeColor: settings.drawingBorderColor, fillColor: settings.drawingFillColor }, rectangleOptions: { draggable: settings.editMode, strokeWeight: settings.drawingBorderWidth, strokeColor: settings.drawingBorderColor, fillColor: settings.drawingFillColor }, drawingControlOptions: { position: google.maps.ControlPosition.TOP_CENTER, drawingModes: settings.drawingTools } }); google.maps.event.addListener(n, "overlaycomplete", function (e) { var n = null; if (settings.singleLocation) { clearLocations(t) } e.overlay.set("draggable", settings.editMode); n = initLocationObject(t, e.overlay, e.type); attachLocationHandlers(t, n, e.type); e.overlay.setOptions({ suppressUndo: true }); attachTransformHandlers(t, e.overlay, e.type); if (settings.locationNew != null && typeof settings.locationNew == "function") { settings.locationNew(t, n) } }); n.setMap(t) } } function attachTransformHandlers(e, t, n) { switch (n) { case google.maps.drawing.OverlayType.POLYLINE: case google.maps.drawing.OverlayType.POLYGON: google.maps.event.addListener(t.getPath(), "set_at", function (r, i) { updateLocationObject(e, t.Location, n, true) }); google.maps.event.addListener(t.getPath(), "insert_at", function (r, i) { updateLocationObject(e, t.Location, n, true) }); google.maps.event.addListener(t.getPath(), "remove_at", function (r, i) { updateLocationObject(e, t.Location, n, true) }); break; case google.maps.drawing.OverlayType.CIRCLE: google.maps.event.addListener(t, "radius_changed", function (r, i) { updateLocationObject(e, t.Location, n, true) }); google.maps.event.addListener(t, "center_changed", function (r, i) { updateLocationObject(e, t.Location, n, true) }); break; case google.maps.drawing.OverlayType.RECTANGLE: google.maps.event.addListener(t, "bounds_changed", function (r, i) { updateLocationObject(e, t.Location, n, true) }); break } } function clearLocations(e) { if (e.locations != null && e.locations.length > 0) { for (i = 0; i < e.locations.length; i++) { e.locations[i].Overlay.setMap(null) } e.locations.length = 0; e.locations = [] } } function initLocationObject(e, t, n) { var r; var s = []; switch (n) { case google.maps.drawing.OverlayType.MARKER: r = new Location([new Coordinate(t.getPosition().lat(), t.getPosition().lng())], google.maps.drawing.OverlayType.MARKER, "", "", "", "", "", ""); break; case google.maps.drawing.OverlayType.CIRCLE: r = new Location([new Coordinate(t.getCenter().lat(), t.getCenter().lng())], google.maps.drawing.OverlayType.CIRCLE, ""); r.Radius = t.getRadius(); break; case google.maps.drawing.OverlayType.POLYLINE: for (i = 0; i < t.getPath().length; i++) { s.push(new Coordinate(t.getPath().getAt(i).lat(), t.getPath().getAt(i).lng())) } r = new Location(s, google.maps.drawing.OverlayType.POLYLINE, ""); break; case google.maps.drawing.OverlayType.POLYGON: for (i = 0; i < t.getPath().length; i++) { s.push(new Coordinate(t.getPath().getAt(i).lat(), t.getPath().getAt(i).lng())) } r = new Location(s, google.maps.drawing.OverlayType.POLYGON, ""); break; case google.maps.drawing.OverlayType.RECTANGLE: s.push(new Coordinate(t.getBounds().getNorthEast().lat(), t.getBounds().getNorthEast().lng())); s.push(new Coordinate(t.getBounds().getSouthWest().lat(), t.getBounds().getSouthWest().lng())); r = new Location(s, google.maps.drawing.OverlayType.RECTANGLE, ""); break } r.Overlay = t; t.Location = r; if (e.locations == null) { e.locations = [] } e.locations.push(r); saveToJson(e); return r } function initMapObject(e, t) { switch (t.LocationType) { case google.maps.drawing.OverlayType.MARKER: var n = new google.maps.Marker({ draggable: settings.editMode, map: e, position: new google.maps.LatLng(t.Coordinates[0].Latitude, t.Coordinates[0].Longitude), Location: t }); if (t.Icon != null && t.Icon != "") { n.setIcon(new google.maps.MarkerImage(settings.markerPinsPath + t.Icon)) } t.Overlay = n; attachLocationHandlers(e, t, google.maps.drawing.OverlayType.MARKER); break; case google.maps.drawing.OverlayType.CIRCLE: var r = new google.maps.Circle({ draggable: settings.editMode, map: e, strokeWeight: t.BorderWeight, strokeColor: t.BorderColor, fillColor: t.FillColor, map: e, radius: t.Radius, center: new google.maps.LatLng(t.Coordinates[0].Latitude, t.Coordinates[0].Longitude), Location: t }); t.Overlay = r; attachLocationHandlers(e, t, google.maps.drawing.OverlayType.CIRCLE); break; case google.maps.drawing.OverlayType.POLYLINE: var i = []; for (c = 0; c < t.Coordinates.length; c++) { var s = new google.maps.LatLng(t.Coordinates[c].Latitude, t.Coordinates[c].Longitude); i.push(s) } polyline = new google.maps.Polyline({ path: i, strokeWeight: t.BorderWeight, strokeColor: t.BorderColor, draggable: settings.editMode, Location: t }); polyline.setMap(e); t.Overlay = polyline; attachLocationHandlers(e, t, google.maps.drawing.OverlayType.POLYLINE); break; case google.maps.drawing.OverlayType.POLYGON: var o = []; for (c = 0; c < t.Coordinates.length; c++) { var u = new google.maps.LatLng(t.Coordinates[c].Latitude, t.Coordinates[c].Longitude); o.push(u) } polygon = new google.maps.Polygon({ path: o, strokeWeight: t.BorderWeight, strokeColor: t.BorderColor, fillColor: t.FillColor, draggable: settings.editMode, Location: t }); polygon.setMap(e); t.Overlay = polygon; attachLocationHandlers(e, t, google.maps.drawing.OverlayType.POLYGON); break; case google.maps.drawing.OverlayType.RECTANGLE: var a = new google.maps.Rectangle({ draggable: settings.editMode, map: e, strokeWeight: t.BorderWeight, strokeColor: t.BorderColor, fillColor: t.FillColor, map: e, bounds: new google.maps.LatLngBounds(new google.maps.LatLng(t.Coordinates[1].Latitude, t.Coordinates[1].Longitude), new google.maps.LatLng(t.Coordinates[0].Latitude, t.Coordinates[0].Longitude)), Location: t }); t.Overlay = a; attachLocationHandlers(e, t, google.maps.drawing.OverlayType.RECTANGLE); break } attachTransformHandlers(e, t.Overlay, t.LocationType) } function saveToJson(e) { var t = null; if (settings.editMode) { var n = getMapLocationsBounds(e); if (n != null) { var r = getMapLocationsBounds(e).getCenter(); settings.center = new Coordinate(r.lat(), r.lng()) } var i = ["editMode", "editTemplatesPath", "markerPinsPath", "markerPinFiles", "drawingBorderColor", "drawingBorderWidth", "drawingFillColor", "zoom", "width", "height", "singleLocation", "center", "language", "searchBox", "richtextEditor", "drawingTools", "zoomControl", "panControl", "scaleControl", "streetViewControl", "scrollWheel", "stylesPath", "style", "locations"]; i = i.concat(["latitude", "longitude", "Coordinates", "Latitude", "Longitude", "Radius", "LocationType", "Icon", "HoverIcon", "Message", "BorderColor", "BorderWeight", "FillColor", "Tag"]); i = i.concat(["featureType", "elementType", "stylers", "color", "hue", "weight", "visibility", "lightness", "saturation"]); t = JSON.stringify($.extend({}, settings, { locations: e.locations }), i); if (settings.dataChange != null && typeof settings.dataChange == "function") { settings.dataChange(e, t) } } return t } function handleMapCloseClick(e, t) { if (typeof e.activeLocation != "undefined" && e.activeLocation != null) { $(".color-picker").remove() } updateLocationObject(e, e.activeLocation, t, false) } function attachLocationHandlers(e, t, n) { google.maps.event.addListener(t.Overlay, "dragend", function (r) { updateLocationObject(e, this.Location, n, true); if (settings.locationMove != null && typeof settings.locationMove == "function") { settings.locationMove(e, t) } }); google.maps.event.addListener(t.Overlay, "mouseover", function () { if (n == google.maps.drawing.OverlayType.MARKER) { if (t.HoverIcon && t.HoverIcon != "none" && t.HoverIcon != null && t.HoverIcon != "") { t.Overlay.setIcon(settings.markerPinsPath + t.HoverIcon) } } }); google.maps.event.addListener(t.Overlay, "mouseout", function () { if (n == google.maps.drawing.OverlayType.MARKER) { if (t.Icon != "default" && t.Icon != null && t.Icon != "") { t.Overlay.setIcon(settings.markerPinsPath + t.Icon) } else { t.Overlay.setIcon(null) } } }); google.maps.event.addListener(t.Overlay, "click", function () { if (!arePopupTemplatesLoaded() && settings.editMode) { return } if (e.infoWindow != null) { e.infoWindow.close(); e.activeLocation = null } for (i = 0; i < e.locations.length; i++) { e.locations[i].Overlay.set("editable", false) } t.Overlay.set("editable", settings.editMode); e.infoWindow = new google.maps.InfoWindow; e.activeLocation = t; google.maps.event.addListener(e.infoWindow, "closeclick", function () { handleMapCloseClick(e, n) }); var r = null; var s = null; switch (n) { case google.maps.drawing.OverlayType.MARKER: r = t.Overlay.position; s = $("").append(popupTemplateMarker); if (!settings.richtextEditor) { s.find("textarea").removeClass("richtext-fix") } break; case google.maps.drawing.OverlayType.CIRCLE: r = t.Overlay.getCenter(); s = $("
").append(popupTemplateCircle); if (!settings.richtextEditor) { s.find("textarea").removeClass("richtext-fix") } break; case google.maps.drawing.OverlayType.POLYLINE: r = getPolyLineCenter(t.Overlay); s = $("
").append(popupTemplatePolyline); if (!settings.richtextEditor) { s.find("textarea").removeClass("richtext-fix") } break; case google.maps.drawing.OverlayType.POLYGON: r = getPolygonCenter(t.Overlay); s = $("
").append(popupTemplatePolygon); if (!settings.richtextEditor) { s.find("textarea").removeClass("richtext-fix") } break; case google.maps.drawing.OverlayType.RECTANGLE: r = t.Overlay.getBounds().getCenter(); s = $("
").append(popupTemplateRectangle); if (!settings.richtextEditor) { s.find("textarea").removeClass("richtext-fix") } break } if (s != null && settings.editMode) { e.infoWindow.setContent(s.html()) } else { e.infoWindow.setContent($("
").append($("
", { "class": "popup-message" }).html(t.Message)).html()) } google.maps.event.addListener(e.infoWindow, "domready", function () { $(e.container).find(".popup-content textarea").val(e.activeLocation.Message); $(e.container).find('.popup-content input[name="locationLat"]').val(r.lat()); $(e.container).find('.popup-content input[name="locationLng"]').val(r.lng()); $(e.container).find('.popup-content input[name="centerLat"]').val(r.lat()); $(e.container).find('.popup-content input[name="centerLng"]').val(r.lng()); $(e.container).find('.popup-content input[name="borderWidth"]').val(t.BorderWeight); $(e.container).find('.popup-content input[name="radius"]').val(t.Radius); var n = $(e.container).find('.popup-content select[name="icon"]'); if (n.length > 0 && settings.markerPinFiles.length > 0) { for (i = 0; i < settings.markerPinFiles.length; i++) { n.append($("
", { value: settings.markerPinsPath + settings.markerPinFiles[i], text: settings.markerPinFiles[i] })) } n.find("option").each(function () { if ($(this).text() == t.Icon) { $(this).prop("selected", true) } }) } else { n.parent().parent().remove() } var s = $(e.container).find('.popup-content select[name="hover-icon"]'); if (s.length > 0 && settings.markerPinFiles.length > 0) { for (i = 0; i < settings.markerPinFiles.length; i++) { s.append($(" ", { value: settings.markerPinsPath + settings.markerPinFiles[i], text: settings.markerPinFiles[i] })) } s.find("option").each(function () { if ($(this).text() == t.HoverIcon) { $(this).prop("selected", true) } }) } else { s.parent().parent().remove() } var o = $(e.container).find('.popup-content input[name="strokeColor"]'); var u = $(e.container).find('.popup-content input[name="fillColor"]'); var a = $(e.container).find('.popup-content input[name="strokeColorPicker"]'); var f = $(e.container).find('.popup-content input[name="fillColorPicker"]'); o.val(e.activeLocation.BorderColor); a.val(e.activeLocation.BorderColor); a.height(o.outerHeight()); a.width(o.outerHeight()); u.val(e.activeLocation.FillColor); f.val(e.activeLocation.FillColor); f.height(u.outerHeight()); f.width(u.outerHeight()); if (isIE()) { o.simpleColorPicker(); u.simpleColorPicker() } else { f.change(function () { u.val($(this).val()) }); u.change(function () { f.val($(this).val()) }); a.change(function () { o.val($(this).val()) }); o.change(function () { a.val($(this).val()) }) } if (settings.richtextEditor) { intTinyMce() } initPopupButtons(e) }); if (r != null && n != google.maps.drawing.OverlayType.MARKER) { e.infoWindow.setPosition(r); e.infoWindow.open(e) } else { e.infoWindow.open(e, t.Overlay) } if (settings.locationClick != null && typeof settings.locationClick == "function") { settings.locationClick(e, t) } }) } function updateLocationObject(e, t, n, r) { var s = []; if ($(".popup-content").length > 0) { if (typeof tinymce != "undefined") { tinyMCE.triggerSave() } t.Message = $(e.container).find(".popup-content textarea").val(); t.BorderColor = $('.popup-content input[name="strokeColor"]').val(); t.FillColor = $('.popup-content input[name="fillColor"]').val(); t.BorderWeight = $('.popup-content input[name="borderWidth"]').val(); if (n != google.maps.drawing.OverlayType.MARKER) { t.Overlay.setOptions({ strokeColor: t.BorderColor, strokeWeight: t.BorderWeight }); if (n != google.maps.drawing.OverlayType.POLYLINE) { t.Overlay.setOptions({ fillColor: t.FillColor }) } } } switch (n) { case google.maps.drawing.OverlayType.MARKER: t.Coordinates.length = 0; t.Coordinates.push(new Coordinate(t.Overlay.getPosition().lat(), t.Overlay.getPosition().lng())); if ($('select[name="icon"]').length > 0) { var o = $('select[name="icon"] :selected').text(); if (o == "default") { t.Icon = null; t.Overlay.setIcon(null) } else { t.Icon = o; t.Overlay.setIcon(settings.markerPinsPath + t.Icon) } var u = $('select[name="hover-icon"] :selected').text(); if (o == "none") { t.HoverIcon = null } else { t.HoverIcon = u } t.Coordinates[0].Latitude = parseFloat($('.popup-content input[name="locationLat"]').val()); t.Coordinates[0].Longitude = parseFloat($('.popup-content input[name="locationLng"]').val()); t.Overlay.setPosition(new google.maps.LatLng(t.Coordinates[0].Latitude, t.Coordinates[0].Longitude)) } break; case google.maps.drawing.OverlayType.CIRCLE: if ($('.popup-content input[name="radius"]').length > 0) { t.Radius = parseFloat($('.popup-content input[name="radius"]').val()); google.maps.event.clearListeners(t.Overlay, "radius_changed"); t.Overlay.setRadius(t.Radius); google.maps.event.addListener(t.Overlay, "radius_changed", function (r, i) { updateLocationObject(e, t, n, true) }) } else { t.Radius = t.Overlay.getRadius() } if ($('.popup-content input[name="centerLat"]').length > 0 && $('.popup-content input[name="centerLng"]').length > 0) { google.maps.event.clearListeners(t.Overlay, "center_changed"); t.Overlay.setCenter(new google.maps.LatLng(parseFloat($('.popup-content input[name="centerLat"]').val()), parseFloat($('.popup-content input[name="centerLng"]').val()))); google.maps.event.addListener(t.Overlay, "center_changed", function (r, i) { updateLocationObject(e, t, n, true) }); t.Coordinates.length = 0; t.Coordinates.push(new Coordinate(t.Overlay.getCenter().lat(), t.Overlay.getCenter().lng())) } else { t.Coordinates.length = 0; t.Coordinates.push(new Coordinate(t.Overlay.getCenter().lat(), t.Overlay.getCenter().lng())) } break; case google.maps.drawing.OverlayType.POLYLINE: for (i = 0; i < t.Overlay.getPath().length; i++) { s.push(new Coordinate(t.Overlay.getPath().getAt(i).lat(), t.Overlay.getPath().getAt(i).lng())) } t.Coordinates = s; break; case google.maps.drawing.OverlayType.POLYGON: for (i = 0; i < t.Overlay.getPath().length; i++) { s.push(new Coordinate(t.Overlay.getPath().getAt(i).lat(), t.Overlay.getPath().getAt(i).lng())) } t.Coordinates = s; break; case google.maps.drawing.OverlayType.RECTANGLE: s.push(new Coordinate(t.Overlay.getBounds().getNorthEast().lat(), t.Overlay.getBounds().getNorthEast().lng())); s.push(new Coordinate(t.Overlay.getBounds().getSouthWest().lat(), t.Overlay.getBounds().getSouthWest().lng())); t.Coordinates = s; break } if (e.activeLocation != null && r) { if (e.infoWindow != null) { e.infoWindow.close() } } saveToJson(e) } function initPopupButtons(e) { var t = $(e.container).find(".btn-popup-delete"); t.off("click"); t.click(function () { if (confirm("Delete this location?")) { e.activeLocation.Overlay.setMap(null); e.locations.splice(e.locations.indexOf(e.activeLocation), 1); e.activeLocation = null; saveToJson(e); e.infoWindow.close(); if (settings.locationDelete != null && typeof settings.locationDelete == "function") { settings.locationDelete(e, location) } } }); var n = $(e.container).find(".btn-popup-cancel"); n.off("click"); n.click(function () { if ($('.popup-content [name="changed"]').val() === "true") { if (confirm("Cancel changes?")) { e.infoWindow.close() } } else { e.infoWindow.close() } }); var r = $(e.container).find(".btn-popup-save"); r.off("click"); r.click(function () { handleMapCloseClick(e, e.activeLocation.LocationType); e.infoWindow.close() }); $('.popup-content input[type="text"],.popup-content input[type="number"],.popup-content input[type="color"],.popup-content select,.popup-content textarea').change(function () { $('.popup-content input[name="changed"]').val(true) }) } function isIE() { var e = window.navigator.userAgent; var t = e.indexOf("MSIE "); if (t > 0 || !!navigator.userAgent.match(/Trident.*rv\:11\./)) { return true } else { return false } } function intTinyMce() { if (typeof tinymce == "undefined") { $.getScript(tinyMceUrl, function () { tinymce.init({ selector: ".popup-content textarea", plugins: ["code image link media table textcolor"], resize: false, toolbar: "bold italic | forecolor | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link | code", menubar: false, statusbar: false }) }) } else { tinymce.init({ selector: ".popup-content textarea", plugins: ["code image link media table textcolor"], resize: false, toolbar: "bold italic | forecolor | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link | code", menubar: false, statusbar: false }) } } function getMapLocationsBounds(e) { if (e.locations != null && e.locations.length > 0) { var t = new google.maps.LatLngBounds; for (i = 0; i < e.locations.length; i++) { for (j = 0; j < e.locations[i].Coordinates.length; j++) { t.extend(new google.maps.LatLng(e.locations[i].Coordinates[j].Latitude, e.locations[i].Coordinates[j].Longitude)) } } return t } return null } function getPolyLineCenter(e) { var t = parseInt(e.getPath().getLength() / 2); return new google.maps.LatLng(e.getPath().getAt(t).lat(), e.getPath().getAt(t).lng()) } function getPolygonCenter(e) { var t = new google.maps.LatLngBounds; for (i = 0; i < e.getPath().getLength() ; i++) { t.extend(new google.maps.LatLng(e.getPath().getAt(i).lat(), e.getPath().getAt(i).lng())) } return t.getCenter() } function createUUID() { var e = []; var t = "0123456789abcdef"; for (var n = 0; n < 36; n++) { e[n] = t.substr(Math.floor(Math.random() * 16), 1) } e[14] = "4"; e[19] = t.substr(e[19] & 3 | 8, 1); e[8] = e[13] = e[18] = e[23] = ""; var r = e.join(""); return r } function htmlEncode(e) { return $("
").text(e).html() } function htmlDecode(e) { return $("
").html(e).text() } function Location(e, t, n) { this.Coordinates = e; this.LocationType = t; this.Icon = null; this.Message = n; this.Overlay = null; this.Radius = 0; this.BorderColor = settings.drawingBorderColor; this.BorderWeight = settings.drawingBorderWidth; this.FillColor = settings.drawingFillColor; this.Tag = null } function Coordinate(e, t) { this.Latitude = e; this.Longitude = t } var defaults = { editMode: true, editTemplatesPath: "../src/html/", markerPinsPath: "../src/img/pin/", markerPinFiles: ["flag-azure.png", "flag-green.png", "needle-pink.png", "niddle-green.png", "pin-azure.png", "pin-green.png", "pin-pink.png"], drawingBorderColor: "#ff0000", drawingBorderWidth: 2, drawingFillColor: "#ffff00", zoom: 13, center: { latitude: 25.0417, longitude: 55.2194 }, width: 800, height: 400, language: "en", singleLocation: false, searchBox: true, richtextEditor: true, drawingTools: ["marker", "polyline", "polygon", "circle", "rectangle"], zoomControl: true, panControl: true, scaleControl: true, streetViewControl: true, scrollWheel: false, style: null, stylesPath: "../src/styles.json", locations: [], dataChange: null, locationClick: null, locationNew: null, locationDelete: null, locationMove: null }; var settings = $.extend({}, defaults, options); var tinyMceUrl = "//tinymce.cachefly.net/4.0/tinymce.min.js"; var mapApiUrl = "//maps.googleapis.com/maps/api/js?sensor=false&callback=mapApiLoaded&libraries=drawing,places"; if (settings.language != "") { mapApiUrl += "&language=" + settings.language } var popupTemplateCircle = null; var popupTemplateRectangle = null; var popupTemplateMarker = null; var popupTemplatePolyline = null; var popupTemplatePolygon = null; var selector = $(this); if ((typeof google !== "undefined" && google !== null ? google.maps : void 0) == null) { $.getScript(mapApiUrl); window.mapApiLoaded = function () { selector.each(function (e) { var t = selector.get(e); if (settings.width == defaults.width) { if ($(t).width() <= 0) { $(t).width(defaults.width) } } else { $(t).width(settings.width) } if (settings.height == defaults.height) { if ($(t).height() <= 0) { $(t).height(defaults.height) } } else { $(t).height(settings.height) } initializeGoogleMapEditor(t) }) } } else { selector.each(function (e) { var t = selector.get(e); initializeGoogleMapEditor(t) }) } }; $.fn.simpleColorPicker = function (e) { var t = { colorsPerLine: 8, colors: ["#000000", "#444444", "#666666", "#999999", "#cccccc", "#eeeeee", "#f3f3f3", "#ffffff", "#ff0000", "#ff9900", "#ffff00", "#00ff00", "#00ffff", "#0000ff", "#9900ff", "#ff00ff", "#f4cccc", "#fce5cd", "#fff2cc", "#d9ead3", "#d0e0e3", "#cfe2f3", "#d9d2e9", "#ead1dc", "#ea9999", "#f9cb9c", "#ffe599", "#b6d7a8", "#a2c4c9", "#9fc5e8", "#b4a7d6", "#d5a6bd", "#e06666", "#f6b26b", "#ffd966", "#93c47d", "#76a5af", "#6fa8dc", "#8e7cc3", "#c27ba0", "#cc0000", "#e69138", "#f1c232", "#6aa84f", "#45818e", "#3d85c6", "#674ea7", "#a64d79", "#990000", "#b45f06", "#bf9000", "#38761d", "#134f5c", "#0b5394", "#351c75", "#741b47", "#660000", "#783f04", "#7f6000", "#274e13", "#0c343d", "#073763", "#20124d", "#4C1130"], showEffect: "", hideEffect: "", onChangeColor: false }; var n = $.extend(t, e); return this.each(function () { function l(e) { if (n.hideEffect == "fade") e.fadeOut(); else if (n.hideEffect == "slide") e.slideUp(); else e.hide() } function c(e) { if (n.showEffect == "fade") e.fadeIn(); else if (n.showEffect == "slide") e.slideDown(); else e.show() } var e = $(this); var r = ""; var i = e.attr("id").replace(/-/g, "") + "_"; for (var s = 0; s < n.colors.length; s++) { var o = n.colors[s]; var u = ""; if (s % n.colorsPerLine == 0) u = "clear: both; "; if (s > 0 && u && $.browser && $.browser.msie && $.browser.version <= 7) { u = ""; r += ' ' } r += ' ' } var a = $(''); $("body").append(a); a.hide(); a.find("li.color-box").click(function () { if (e.is("input")) { e.val(n.colors[this.id.substr(this.id.indexOf("-") + 1)]); e.blur() } if ($.isFunction(t.onChangeColor)) { t.onChangeColor.call(e, n.colors[this.id.substr(this.id.indexOf("-") + 1)]) } l(a) }); $(document).on("click", "body", function () { l(a) }); a.click(function (e) { e.stopPropagation() }); var f = function (t) { var n = e.offset(); var r = n.left + e.outerWidth() - t.outerWidth(); if (r < n.left) r = n.left; t.css({ left: r, top: n.top + e.outerHeight() }); c(t) }; e.click(function (t) { t.stopPropagation(); if (!e.is("input")) { f(a) } }); e.focus(function () { $(".color-picker").each(function (e) { l($(this)) }); f(a) }) }) }
\ No newline at end of file
diff --git a/web/Scripts/styles.json b/web/Scripts/styles.json
new file mode 100644
index 00000000..694c8f48
--- /dev/null
+++ b/web/Scripts/styles.json
@@ -0,0 +1 @@
+[{"id":15,"name":"Subtle Grayscale","description":"A nice, simple grayscale version of the map with color extremes that are never too harsh on the eyes. Originally created for http://barvinssurvins.fr/situer.","url":"http://snazzymaps.com/style/15/subtle-grayscale","json":"[\r\n {\r\n featureType: \"landscape\",\r\n stylers: [\r\n { saturation: -100 },\r\n { lightness: 65 },\r\n { visibility: \"on\" }\r\n ]\r\n },{\r\n featureType: \"poi\",\r\n stylers: [\r\n { saturation: -100 },\r\n { lightness: 51 },\r\n { visibility: \"simplified\" }\r\n ]\r\n },{\r\n featureType: \"road.highway\",\r\n stylers: [\r\n { saturation: -100 },\r\n { visibility: \"simplified\" }\r\n ]\r\n },{\r\n featureType: \"road.arterial\",\r\n stylers: [\r\n { saturation: -100 },\r\n { lightness: 30 },\r\n { visibility: \"on\" }\r\n ]\r\n },{\r\n featureType: \"road.local\",\r\n stylers: [\r\n { saturation: -100 },\r\n { lightness: 40 },\r\n { visibility: \"on\" }\r\n ]\r\n },{\r\n featureType: \"transit\",\r\n stylers: [\r\n { saturation: -100 },\r\n { visibility: \"simplified\" }\r\n ]\r\n },{\r\n featureType: \"administrative.province\",\r\n stylers: [\r\n { visibility: \"off\" }\r\n ]\r\n /** /\r\n },{\r\n featureType: \"administrative.locality\",\r\n stylers: [\r\n { visibility: \"off\" }\r\n ]\r\n },{\r\n featureType: \"administrative.neighborhood\",\r\n stylers: [\r\n { visibility: \"on\" }\r\n ]\r\n /**/\r\n },{\r\n featureType: \"water\",\r\n elementType: \"labels\",\r\n stylers: [\r\n { visibility: \"on\" },\r\n { lightness: -25 },\r\n { saturation: -100 }\r\n ]\r\n },{\r\n featureType: \"water\",\r\n elementType: \"geometry\",\r\n stylers: [\r\n { hue: \"#ffff00\" },\r\n { lightness: -25 },\r\n { saturation: -97 }\r\n ]\r\n }\r\n ]","views":46237,"createdBy":{"name":"Paulo Ávila","url":"https://github.com/demoive/"},"createdOn":"2013-10-30T16:37:24.593"},{"id":1,"name":"Pale Dawn","description":"Inspired by CloudMade's style of the same name. Use of subdued colours results in an excellent style for sites with a pastel colour scheme.","url":"http://snazzymaps.com/style/1/pale-dawn","json":"[ { 'featureType': 'water', 'stylers': [{ 'visibility': 'on' },{ 'color': '#acbcc9' } ] },{ 'featureType': 'landscape', 'stylers': [{ 'color': '#f2e5d4' } ] },{ 'featureType': 'road.highway', 'elementType': 'geometry', 'stylers': [{ 'color': '#c5c6c6' } ] },{ 'featureType': 'road.arterial', 'elementType': 'geometry', 'stylers': [{ 'color': '#e4d7c6' } ] },{ 'featureType': 'road.local', 'elementType': 'geometry', 'stylers': [{ 'color': '#fbfaf7' } ] },{ 'featureType': 'poi.park', 'elementType': 'geometry', 'stylers': [{ 'color': '#c5dac6' } ] },{ 'featureType': 'administrative', 'stylers': [{ 'visibility': 'on' },{ 'lightness': 33 } ] },{ 'featureType': 'road' },{ 'featureType': 'poi.park', 'elementType': 'labels', 'stylers': [{ 'visibility': 'on' },{ 'lightness': 20 } ] },{ },{ 'featureType': 'road', 'stylers': [{ 'lightness': 20 } ] }]","views":27849,"createdBy":{"name":"Adam Krogh","url":"http://atmist.com"},"createdOn":"2013-10-24T22:54:34.183"},{"id":25,"name":"Blue water","description":"A simple map with blue water and roads/landscape in grayscale. ","url":"http://snazzymaps.com/style/25/blue-water","json":"[\r\n\t{\r\n\t\tfeatureType: 'water',\r\n\t\tstylers: [{color:'#46bcec'},{visibility:'on'}]\r\n\t},{\r\n\t\tfeatureType: 'landscape',\r\n\t\tstylers: [{color:'#f2f2f2'}]\r\n\t},{\r\n\t\tfeatureType: 'road',\r\n\t\tstylers: [{saturation: -100},{lightness: 45}]\r\n\t},{\r\n\t\tfeatureType: 'road.highway',\r\n\t\tstylers: [{visibility: 'simplified'}]\r\n\t},{\r\n\t\tfeatureType: 'road.arterial',\r\n\t\telementType: 'labels.icon',\r\n\t\tstylers: [{visibility: 'off'}]\r\n\t},{\r\n\t\tfeatureType: 'administrative',\r\n\t\telementType: 'labels.text.fill',\r\n\t\tstylers: [{color: '#444444'}]\r\n\t},{\r\n\t\tfeatureType: 'transit',\r\n\t\tstylers: [{visibility: 'off'}]\r\n\t},{\r\n\t\tfeatureType: 'poi',\r\n\t\tstylers: [{visibility: 'off'}]\r\n\t}\r\n]","views":23817,"createdBy":{"name":"Xavier","url":"http://www.xavierfoucrier.fr"},"createdOn":"2013-11-05T16:09:45.02"},{"id":38,"name":"Shades of Grey","description":"A map with various shades of grey. Great for a website with a really dark theme. ","url":"http://snazzymaps.com/style/38/shades-of-grey","json":"[\r\n {\r\n \"featureType\": \"water\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"color\": \"#000000\" },\r\n { \"lightness\": 17 }\r\n ]\r\n },{\r\n \"featureType\": \"landscape\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"color\": \"#000000\" },\r\n { \"lightness\": 20 }\r\n ]\r\n },{\r\n \"featureType\": \"road.highway\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"color\": \"#000000\" },\r\n { \"lightness\": 17 }\r\n ]\r\n },{\r\n \"featureType\": \"road.highway\",\r\n \"elementType\": \"geometry.stroke\",\r\n \"stylers\": [\r\n { \"color\": \"#000000\" },\r\n { \"lightness\": 29 },\r\n { \"weight\": 0.2 }\r\n ]\r\n },{\r\n \"featureType\": \"road.arterial\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"color\": \"#000000\" },\r\n { \"lightness\": 18 }\r\n ]\r\n },{\r\n \"featureType\": \"road.local\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"color\": \"#000000\" },\r\n { \"lightness\": 16 }\r\n ]\r\n },{\r\n \"featureType\": \"poi\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"color\": \"#000000\" },\r\n { \"lightness\": 21 }\r\n ]\r\n },{\r\n \"elementType\": \"labels.text.stroke\",\r\n \"stylers\": [\r\n { \"visibility\": \"on\" },\r\n { \"color\": \"#000000\" },\r\n { \"lightness\": 16 }\r\n ]\r\n },{\r\n \"elementType\": \"labels.text.fill\",\r\n \"stylers\": [\r\n { \"saturation\": 36 },\r\n { \"color\": \"#000000\" },\r\n { \"lightness\": 40 }\r\n ]\r\n },{\r\n \"elementType\": \"labels.icon\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"transit\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"color\": \"#000000\" },\r\n { \"lightness\": 19 }\r\n ]\r\n },{\r\n \"featureType\": \"administrative\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"color\": \"#000000\" },\r\n { \"lightness\": 20 }\r\n ]\r\n },{\r\n \"featureType\": \"administrative\",\r\n \"elementType\": \"geometry.stroke\",\r\n \"stylers\": [\r\n { \"color\": \"#000000\" },\r\n { \"lightness\": 17 },\r\n { \"weight\": 1.2 }\r\n ]\r\n }\r\n]","views":18450,"createdBy":{"name":"Adam Krogh","url":"http://atmist.com"},"createdOn":"2013-11-12T18:21:41.94"},{"id":2,"name":"Midnight Commander","description":"Inspired by CloudMade's style of the same name. A dark use of water and 'Tron' like colours results in a very unique style.","url":"http://snazzymaps.com/style/2/midnight-commander","json":"[{'featureType': 'water','stylers': [{ 'color': '#021019' }]},{'featureType': 'landscape','stylers': [{ 'color': '#08304b' }]},{'featureType': 'poi','elementType': 'geometry','stylers': [{ 'color': '#0c4152' },{ 'lightness': 5 }]},{'featureType': 'road.highway','elementType': 'geometry.fill','stylers': [{ 'color': '#000000' }]},{'featureType': 'road.highway','elementType': 'geometry.stroke','stylers': [{ 'color': '#0b434f' },{ 'lightness': 25 }]},{'featureType': 'road.arterial','elementType': 'geometry.fill','stylers': [{ 'color': '#000000' }]},{'featureType': 'road.arterial','elementType': 'geometry.stroke','stylers': [{ 'color': '#0b3d51' },{ 'lightness': 16 }]},{'featureType': 'road.local','elementType': 'geometry','stylers': [{ 'color': '#000000' }]},{'elementType': 'labels.text.fill','stylers': [{ 'color': '#ffffff' }]},{'elementType': 'labels.text.stroke','stylers': [{ 'color': '#000000' },{ 'lightness': 13 }]},{'featureType': 'transit','stylers': [{ 'color': '#146474' }]},{'featureType': 'administrative','elementType': 'geometry.fill','stylers': [{ 'color': '#000000' }]},{'featureType': 'administrative','elementType': 'geometry.stroke','stylers': [{ 'color': '#144b53' },{ 'lightness': 14 },{ 'weight': 1.4 }]}]","views":15847,"createdBy":{"name":"Adam Krogh","url":"http://atmist.com"},"createdOn":"2013-10-24T22:54:36.037"},{"id":18,"name":"Retro","description":"A retro style map from Google that has a ton of detail. Looks great zoomed in on a city with lots of features.","url":"http://snazzymaps.com/style/18/retro","json":"[{featureType:\"administrative\",stylers:[{visibility:\"off\"}]},\r\n{featureType:\"poi\",stylers:[{visibility:\"simplified\"}]},{featureType:\"road\",elementType:\"labels\",stylers:[{visibility:\"simplified\"}]},{featureType:\"water\",stylers:[{visibility:\"simplified\"}]},{featureType:\"transit\",stylers:[{visibility:\"simplified\"}]},{featureType:\"landscape\",stylers:[{visibility:\"simplified\"}]},{featureType:\"road.highway\",stylers:[{visibility:\"off\"}]},{featureType:\"road.local\",stylers:[{visibility:\"on\"}]},{featureType:\"road.highway\",elementType:\"geometry\",stylers:[{visibility:\"on\"}]},\r\n{featureType:\"water\",stylers:[{color:\"#84afa3\"},{lightness:52}]},{stylers:[{saturation:-17},{gamma:0.36}]},{featureType:\"transit.line\",elementType:\"geometry\",stylers:[{color:\"#3f518c\"}] }]","views":15049,"createdBy":{"name":"Google","url":"https://embed-dot-more-than-a-map.appspot.com/demos/basemaps/sydney"},"createdOn":"2013-10-31T15:05:56.073"},{"id":29,"name":"Light Monochrome","description":"This map style was created for the Streng Design & Advertising website redesign. Used primary as a design element, it needed to be light and subtle but still recognizable.","url":"http://snazzymaps.com/style/29/light-monochrome","json":"[\r\n\t\t\t\t{\r\n\t\t\t\t\tfeatureType: 'water',\r\n\t\t\t\t\telementType: 'all',\r\n\t\t\t\t\tstylers: [\r\n\t\t\t\t\t\t{ hue: '#e9ebed' },\r\n\t\t\t\t\t\t{ saturation: -78 },\r\n\t\t\t\t\t\t{ lightness: 67 },\r\n\t\t\t\t\t\t{ visibility: 'simplified' }\r\n\t\t\t\t\t]\r\n\t\t\t\t},{\r\n\t\t\t\t\tfeatureType: 'landscape',\r\n\t\t\t\t\telementType: 'all',\r\n\t\t\t\t\tstylers: [\r\n\t\t\t\t\t\t{ hue: '#ffffff' },\r\n\t\t\t\t\t\t{ saturation: -100 },\r\n\t\t\t\t\t\t{ lightness: 100 },\r\n\t\t\t\t\t\t{ visibility: 'simplified' }\r\n\t\t\t\t\t]\r\n\t\t\t\t},{\r\n\t\t\t\t\tfeatureType: 'road',\r\n\t\t\t\t\telementType: 'geometry',\r\n\t\t\t\t\tstylers: [\r\n\t\t\t\t\t\t{ hue: '#bbc0c4' },\r\n\t\t\t\t\t\t{ saturation: -93 },\r\n\t\t\t\t\t\t{ lightness: 31 },\r\n\t\t\t\t\t\t{ visibility: 'simplified' }\r\n\t\t\t\t\t]\r\n\t\t\t\t},{\r\n\t\t\t\t\tfeatureType: 'poi',\r\n\t\t\t\t\telementType: 'all',\r\n\t\t\t\t\tstylers: [\r\n\t\t\t\t\t\t{ hue: '#ffffff' },\r\n\t\t\t\t\t\t{ saturation: -100 },\r\n\t\t\t\t\t\t{ lightness: 100 },\r\n\t\t\t\t\t\t{ visibility: 'off' }\r\n\t\t\t\t\t]\r\n\t\t\t\t},{\r\n\t\t\t\t\tfeatureType: 'road.local',\r\n\t\t\t\t\telementType: 'geometry',\r\n\t\t\t\t\tstylers: [\r\n\t\t\t\t\t\t{ hue: '#e9ebed' },\r\n\t\t\t\t\t\t{ saturation: -90 },\r\n\t\t\t\t\t\t{ lightness: -8 },\r\n\t\t\t\t\t\t{ visibility: 'simplified' }\r\n\t\t\t\t\t]\r\n\t\t\t\t},{\r\n\t\t\t\t\tfeatureType: 'transit',\r\n\t\t\t\t\telementType: 'all',\r\n\t\t\t\t\tstylers: [\r\n\t\t\t\t\t\t{ hue: '#e9ebed' },\r\n\t\t\t\t\t\t{ saturation: 10 },\r\n\t\t\t\t\t\t{ lightness: 69 },\r\n\t\t\t\t\t\t{ visibility: 'on' }\r\n\t\t\t\t\t]\r\n\t\t\t\t},{\r\n\t\t\t\t\tfeatureType: 'administrative.locality',\r\n\t\t\t\t\telementType: 'all',\r\n\t\t\t\t\tstylers: [\r\n\t\t\t\t\t\t{ hue: '#2c2e33' },\r\n\t\t\t\t\t\t{ saturation: 7 },\r\n\t\t\t\t\t\t{ lightness: 19 },\r\n\t\t\t\t\t\t{ visibility: 'on' }\r\n\t\t\t\t\t]\r\n\t\t\t\t},{\r\n\t\t\t\t\tfeatureType: 'road',\r\n\t\t\t\t\telementType: 'labels',\r\n\t\t\t\t\tstylers: [\r\n\t\t\t\t\t\t{ hue: '#bbc0c4' },\r\n\t\t\t\t\t\t{ saturation: -93 },\r\n\t\t\t\t\t\t{ lightness: 31 },\r\n\t\t\t\t\t\t{ visibility: 'on' }\r\n\t\t\t\t\t]\r\n\t\t\t\t},{\r\n\t\t\t\t\tfeatureType: 'road.arterial',\r\n\t\t\t\t\telementType: 'labels',\r\n\t\t\t\t\tstylers: [\r\n\t\t\t\t\t\t{ hue: '#bbc0c4' },\r\n\t\t\t\t\t\t{ saturation: -93 },\r\n\t\t\t\t\t\t{ lightness: -2 },\r\n\t\t\t\t\t\t{ visibility: 'simplified' }\r\n\t\t\t\t\t]\r\n\t\t\t\t}\r\n\t\t\t]","views":12988,"createdBy":{"name":"Derrik Engel","url":"http://www.strengdesign.com"},"createdOn":"2013-11-07T15:16:34.433"},{"id":39,"name":"Paper","description":"A light theme with an excellent contrast between water, parks, and land.","url":"http://snazzymaps.com/style/39/paper","json":"[{featureType:\"administrative\",stylers:[{visibility:\"off\"}]},{featureType:\"poi\",stylers:[{visibility:\"simplified\"}]},{featureType:\"road\",stylers:[{visibility:\"simplified\"}]},{featureType:\"water\",stylers:[{visibility:\"simplified\"}]},{featureType:\"transit\",stylers:[{visibility:\"simplified\"}]},{featureType:\"landscape\",stylers:[{visibility:\"simplified\"}]},{featureType:\"road.highway\",stylers:[{visibility:\"off\"}]},\r\n{featureType:\"road.local\",stylers:[{visibility:\"on\"}]},{featureType:\"road.highway\",elementType:\"geometry\",stylers:[{visibility:\"on\"}]},{featureType:\"road.arterial\",stylers:[{visibility:\"off\"}]},{featureType:\"water\",stylers:[{color:\"#5f94ff\"},{lightness:26},{gamma:5.86}]},{},{featureType:\"road.highway\",stylers:[{weight:0.6},{saturation:-85},{lightness:61}]},{featureType:\"road\"},{},{featureType:\"landscape\",stylers:[{hue:\"#0066ff\"},{saturation:74},{lightness:100}]}]","views":10617,"createdBy":{"name":"Google","url":"https://embed-dot-more-than-a-map.appspot.com/demos/basemaps/san-francisco"},"createdOn":"2013-11-19T02:52:19.577"},{"id":42,"name":"Apple Maps-esque","description":"A theme that largely resembles the Apple Maps theme, albeit somewhat flatter.","url":"http://snazzymaps.com/style/42/apple-maps-esque","json":"[\r\n\r\n // WATER\r\n\r\n {\r\n featureType: 'water',\r\n elementType: 'geometry',\r\n stylers: [{\r\n color: '#a2daf2'\r\n }]\r\n },\r\n\r\n // LANDSCAPE\r\n\r\n {\r\n featureType: 'landscape.man_made',\r\n elementType: 'geometry',\r\n stylers: [{\r\n color: '#f7f1df'\r\n }]\r\n },\r\n\r\n {\r\n featureType: 'landscape.natural',\r\n elementType: 'geometry',\r\n stylers: [{\r\n color: '#d0e3b4'\r\n }]\r\n },\r\n\r\n {\r\n featureType: 'landscape.natural.terrain',\r\n elementType: 'geometry',\r\n stylers: [{\r\n visibility: 'off'\r\n }]\r\n },\r\n\r\n // POINTS OF INTEREST\r\n\r\n {\r\n featureType: 'poi.park',\r\n elementType: 'geometry',\r\n stylers: [{\r\n color: '#bde6ab'\r\n }]\r\n },\r\n\r\n {\r\n featureType: 'poi',\r\n elementType: 'labels',\r\n stylers: [{\r\n visibility: 'off'\r\n }]\r\n },\r\n\r\n {\r\n featureType: 'poi.medical',\r\n elementType: 'geometry',\r\n stylers: [{\r\n color: '#fbd3da'\r\n }]\r\n },\r\n\r\n {\r\n featureType: 'poi.business',\r\n stylers: [{\r\n visibility: 'off'\r\n }]\r\n },\r\n\r\n // ROADS\r\n\r\n {\r\n featureType: 'road',\r\n elementType: 'geometry.stroke',\r\n stylers: [{\r\n visibility: 'off'\r\n }]\r\n },\r\n\r\n {\r\n featureType: 'road',\r\n elementType: 'labels',\r\n stylers: [{\r\n visibility: 'off'\r\n }]\r\n },\r\n\r\n {\r\n featureType: 'road.highway',\r\n elementType: 'geometry.fill',\r\n stylers: [{\r\n color: '#ffe15f'\r\n }]\r\n },\r\n\r\n {\r\n featureType: 'road.highway',\r\n elementType: 'geometry.stroke',\r\n stylers: [{\r\n color: '#efd151'\r\n }]\r\n },\r\n\r\n {\r\n featureType: 'road.arterial',\r\n elementType: 'geometry.fill',\r\n stylers: [{\r\n color: '#ffffff'\r\n }]\r\n },\r\n\r\n {\r\n featureType: 'road.local',\r\n elementType: 'geometry.fill',\r\n stylers: [{\r\n color: 'black'\r\n }]\r\n },\r\n\r\n // TRANSIT\r\n\r\n {\r\n featureType: 'transit.station.airport',\r\n elementType: 'geometry.fill',\r\n stylers: [{\r\n color: '#cfb2db'\r\n }]\r\n }\r\n\r\n ]","views":9493,"createdBy":{"name":"Mike Fowler","url":"http://mikefowler.me"},"createdOn":"2013-11-20T17:57:23.553"},{"id":20,"name":"Gowalla","description":"Style as used on the Gowalla (RIP) website, one of the first larger projects to have used custom styled maps. Subtle changes to the water and road color combined with reduced features creates an excellent simplified map style.","url":"http://snazzymaps.com/style/20/gowalla","json":"[\t\t\r\n\t{\r\n\t\tfeatureType: \"road\",\r\n\t\telementType: \"labels\",\r\n\t\tstylers: [ { visibility: \"simplified\" }, { lightness: 20 } ]\r\n\t},{\r\n\t\tfeatureType: \"administrative.land_parcel\",\r\n\t\telementType: \"all\",\r\n\t\tstylers: [ { visibility: \"off\" } ]\r\n\t},{\r\n\t\tfeatureType: \"landscape.man_made\",\r\n\t\telementType: \"all\",\r\n\t\tstylers: [ { visibility: \"off\" } ]\r\n\t},{\r\n\t\tfeatureType: \"transit\",\r\n\t\telementType: \"all\",\r\n\t\tstylers: [ { visibility: \"off\" } ]\r\n\t},{\r\n\t\tfeatureType: \"road.local\",\r\n\t\telementType: \"labels\",\r\n\t\tstylers: [ { visibility: \"simplified\" } ]\r\n\t},{\r\n\t\tfeatureType: \"road.local\",\r\n\t\telementType: \"geometry\",\r\n\t\tstylers: [ { visibility: \"simplified\" } ]\r\n\t},{\r\n\t\tfeatureType: \"road.highway\",\r\n\t\telementType: \"labels\",\r\n\t\tstylers: [ { visibility: \"simplified\" } ]\r\n\t},{\r\n\t\tfeatureType: \"poi\",\r\n\t\telementType: \"labels\",\r\n\t\tstylers: [ { visibility: \"off\" } ]\r\n },{\r\n\t\tfeatureType: \"road.arterial\",\r\n\t\telementType: \"labels\",\r\n\t\tstylers: [ { visibility: \"off\" } ]\r\n\t},{\r\n\t\tfeatureType: \"water\",\r\n\t\telementType: \"all\",\r\n\t\tstylers: [ { hue: \"#a1cdfc\" },{ saturation: 30 },{ lightness: 49 } ]\r\n\t},{\r\n\t\tfeatureType: \"road.highway\",\r\n\t\telementType: \"geometry\",\r\n\t\tstylers: [ { hue: \"#f49935\" } ]\r\n\t},{\r\n\t\tfeatureType: \"road.arterial\",\r\n\t\telementType: \"geometry\",\r\n\t\tstylers: [ { hue: \"#fad959\" } ]\r\n\t}\r\n]","views":9476,"createdBy":{"name":"Bramus","url":"http://www.bram.us/"},"createdOn":"2013-11-02T18:13:19.54"},{"id":5,"name":"Greyscale","description":"Example provided by Google showcasing their style API. A really cool greyscale colour scheme that looks great when zoomed in.","url":"http://snazzymaps.com/style/5/greyscale","json":"[{ featureType: 'all', stylers: [{saturation: -100},{gamma: 0.50} ]} ]","views":9366,"createdBy":{"name":"Google","url":"http://maps-api-tt.appspot.com/apilite/styled/styled.html"},"createdOn":"2013-10-24T22:54:39.703"},{"id":19,"name":"Subtle","description":"A subtle and simple map style perfect for productions using colourful markers, pins or polygons.","url":"http://snazzymaps.com/style/19/subtle","json":"[\r\n\t{\r\n\t\t\"featureType\": \"poi\",\r\n\t\t\"stylers\": [\r\n\t\t\t{ \"visibility\": \"off\" }\r\n\t\t]\r\n\t},{\r\n\t\t\"stylers\": [\r\n\t\t\t{ \"saturation\": -70 },\r\n\t\t\t{ \"lightness\": 37 },\r\n\t\t\t{ \"gamma\": 1.15 }\r\n\t\t]\r\n\t},{\r\n\t\t\"elementType\": \"labels\",\r\n\t\t\"stylers\": [\r\n\t\t\t{ \"gamma\": 0.26 },\r\n\t\t\t{ \"visibility\": \"off\" }\r\n\t\t]\r\n\t},{\r\n\t\t\"featureType\": \"road\",\r\n\t\t\"stylers\": [\r\n\t\t\t{ \"lightness\": 0 },\r\n\t\t\t{ \"saturation\": 0 },\r\n\t\t\t{ \"hue\": \"#ffffff\" },\r\n\t\t\t{ \"gamma\": 0 }\r\n\t\t]\r\n\t},{\r\n\t\t\"featureType\": \"road\",\r\n\t\t\"elementType\": \"labels.text.stroke\",\r\n\t\t\"stylers\": [\r\n\t\t\t{ \"visibility\": \"off\" }\r\n\t\t]\r\n\t},{\r\n\t\t\"featureType\": \"road.arterial\",\r\n\t\t\"elementType\": \"geometry\",\r\n\t\t\"stylers\": [\r\n\t\t\t{ \"lightness\": 20 }\r\n\t\t]\r\n\t},{\r\n\t\t\"featureType\": \"road.highway\",\r\n\t\t\"elementType\": \"geometry\",\r\n\t\t\"stylers\": [\r\n\t\t\t{ \"lightness\": 50 },\r\n\t\t\t{ \"saturation\": 0 },\r\n\t\t\t{ \"hue\": \"#ffffff\" }\r\n\t\t]\r\n\t},{\r\n\t\t\"featureType\": \"administrative.province\",\r\n\t\t\"stylers\": [\r\n\t\t\t{ \"visibility\": \"on\" },\r\n\t\t\t{ \"lightness\": -50 }\r\n\t\t]\r\n\t},{\r\n\t\t\"featureType\": \"administrative.province\",\r\n\t\t\"elementType\": \"labels.text.stroke\",\r\n\t\t\"stylers\": [\r\n\t\t\t{ \"visibility\": \"off\" }\r\n\t\t]\r\n\t},{\r\n\t\t\"featureType\": \"administrative.province\",\r\n\t\t\"elementType\": \"labels.text\",\r\n\t\t\"stylers\": [\r\n\t\t\t{ \"lightness\": 20 }\r\n\t\t]\r\n\t} \r\n]","views":8366,"createdBy":{"name":"Søren Larsen Pedersen","url":"http://www.larsenpedersen.com"},"createdOn":"2013-11-01T02:30:59.14"},{"id":53,"name":"Flat Map","description":"A flat, minimal, colourful map without any labels.","url":"http://snazzymaps.com/style/53/flat-map","json":"[{\r\n \"stylers\": [{\r\n \"visibility\": \"off\"\r\n }]\r\n }, {\r\n \"featureType\": \"road\",\r\n \"stylers\": [{\r\n \"visibility\": \"on\"\r\n }, {\r\n \"color\": \"#ffffff\"\r\n }]\r\n }, {\r\n \"featureType\": \"road.arterial\",\r\n \"stylers\": [{\r\n \"visibility\": \"on\"\r\n }, {\r\n \"color\": \"#fee379\"\r\n }]\r\n }, {\r\n \"featureType\": \"road.highway\",\r\n \"stylers\": [{\r\n \"visibility\": \"on\"\r\n }, {\r\n \"color\": \"#fee379\"\r\n }]\r\n }, {\r\n \"featureType\": \"landscape\",\r\n \"stylers\": [{\r\n \"visibility\": \"on\"\r\n }, {\r\n \"color\": \"#f3f4f4\"\r\n }]\r\n }, {\r\n \"featureType\": \"water\",\r\n \"stylers\": [{\r\n \"visibility\": \"on\"\r\n }, {\r\n \"color\": \"#7fc8ed\"\r\n }]\r\n }, {}, {\r\n \"featureType\": \"road\",\r\n \"elementType\": \"labels\",\r\n \"stylers\": [{\r\n \"visibility\": \"off\"\r\n }]\r\n }, {\r\n \"featureType\": \"poi.park\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [{\r\n \"visibility\": \"on\"\r\n }, {\r\n \"color\": \"#83cead\"\r\n }]\r\n }, {\r\n \"elementType\": \"labels\",\r\n \"stylers\": [{\r\n \"visibility\": \"off\"\r\n }]\r\n }, {\r\n \"featureType\": \"landscape.man_made\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [{\r\n \"weight\": 0.9\r\n }, {\r\n \"visibility\": \"off\"\r\n }]\r\n }]","views":8096,"createdBy":{"name":"Sergio Behrends","url":"http://snazzymaps.com"},"createdOn":"2014-01-06T19:38:52.737"},{"id":13,"name":"Neutral Blue","description":"A variety of deep blue colors provides great contrast whether you are zoomed out looking at countries or zoomed right in on specific roads. ","url":"http://snazzymaps.com/style/13/neutral-blue","json":"[{\"featureType\": \"water\",\"elementType\": \"geometry\",\"stylers\": [{ \"color\": \"#193341\" }]},{\"featureType\": \"landscape\",\"elementType\": \"geometry\",\"stylers\": [{ \"color\": \"#2c5a71\" }]},{\"featureType\": \"road\",\"elementType\": \"geometry\",\"stylers\": [{ \"color\": \"#29768a\" },{ \"lightness\": -37 }]},{\"featureType\": \"poi\",\"elementType\": \"geometry\",\"stylers\": [{ \"color\": \"#406d80\" }]},{\"featureType\": \"transit\",\"elementType\": \"geometry\",\"stylers\": [{ \"color\": \"#406d80\" }]},{\"elementType\": \"labels.text.stroke\",\"stylers\": [{ \"visibility\": \"on\" },{ \"color\": \"#3e606f\" },{ \"weight\": 2 },{ \"gamma\": 0.84 }]},{\"elementType\": \"labels.text.fill\",\"stylers\": [{ \"color\": \"#ffffff\" }]},{\"featureType\": \"administrative\",\"elementType\": \"geometry\",\"stylers\": [{ \"weight\": 0.6 },{ \"color\": \"#1a3541\" }]},{\"elementType\": \"labels.icon\",\"stylers\": [{ \"visibility\": \"off\" }]},{\"featureType\": \"poi.park\",\"elementType\": \"geometry\",\"stylers\": [{ \"color\": \"#2c5a71\" }]}]","views":7742,"createdBy":{"name":"Adam Krogh","url":"http://atmist.com"},"createdOn":"2013-10-30T04:22:53.393"},{"id":27,"name":"Shift Worker","description":"Almost grey scale, this style uses subdued tones to display streets with a minimum of distractions. Best used around zoom level 16 to show a local address.","url":"http://snazzymaps.com/style/27/shift-worker","json":"[\r\n { stylers: [{ saturation: -100 }, { gamma: 1 }] },\r\n { elementType: \"labels.text.stroke\", stylers: [{ visibility: \"off\" }] },\r\n { featureType: \"poi.business\", elementType: \"labels.text\", stylers: [{ visibility: \"off\" }] },\r\n { featureType: \"poi.business\", elementType: \"labels.icon\", stylers: [{ visibility: \"off\" }] },\r\n { featureType: \"poi.place_of_worship\", elementType: \"labels.text\", stylers: [{ visibility: \"off\" }] },\r\n { featureType: \"poi.place_of_worship\", elementType: \"labels.icon\", stylers: [{ visibility: \"off\" }] },\r\n { featureType: \"road\", elementType: \"geometry\", stylers: [{ visibility: \"simplified\" }] },\r\n { featureType: \"water\", stylers: [{ visibility: \"on\" }, { saturation: 50 }, { gamma: 0 }, { hue: \"#50a5d1\" }] },\r\n { featureType: \"administrative.neighborhood\", elementType: \"labels.text.fill\", stylers: [{ color: \"#333333\" }] },\r\n { featureType: \"road.local\", elementType: \"labels.text\", stylers: [{ weight: 0.5 }, { color: \"#333333\" }] },\r\n { featureType: \"transit.station\", elementType: \"labels.icon\", stylers: [{ gamma: 1 }, { saturation: 50 }] }\r\n]","views":7645,"createdBy":{"name":"The Factory","url":"http://workthefactory.com/"},"createdOn":"2013-11-07T15:14:38.813"},{"id":44,"name":"MapBox","description":"Light blue and grey color scheme for Google Maps, inspired by MapBox's default map color.","url":"http://snazzymaps.com/style/44/mapbox","json":"[\r\n {\r\n \"featureType\": \"water\",\r\n \"stylers\": [\r\n {\r\n \"saturation\": 43\r\n },\r\n {\r\n \"lightness\": -11\r\n },\r\n {\r\n \"hue\": \"#0088ff\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n {\r\n \"hue\": \"#ff0000\"\r\n },\r\n {\r\n \"saturation\": -100\r\n },\r\n {\r\n \"lightness\": 99\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road\",\r\n \"elementType\": \"geometry.stroke\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#808080\"\r\n },\r\n {\r\n \"lightness\": 54\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"landscape.man_made\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#ece2d9\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi.park\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#ccdca1\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road\",\r\n \"elementType\": \"labels.text.fill\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#767676\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road\",\r\n \"elementType\": \"labels.text.stroke\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#ffffff\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"landscape.natural\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"on\"\r\n },\r\n {\r\n \"color\": \"#b8cb93\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi.park\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"on\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi.sports_complex\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"on\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi.medical\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"on\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi.business\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"simplified\"\r\n }\r\n ]\r\n }\r\n]","views":6945,"createdBy":{"name":"Sam Herbert","url":"http://abearcreative.com/"},"createdOn":"2013-11-25T16:30:39.307"},{"id":54,"name":"RouteXL","description":"Clear, light map with little details, to put accent on road itineraries. Included are roads and administrative elements, like cities, states and countries. Landscape elements are simple, but points of interest and transits are excluded.","url":"http://snazzymaps.com/style/54/routexl","json":"[ \r\n\t{ featureType: \"administrative\", elementType: \"all\", stylers: [ { visibility: \"on\" }, { saturation: -100 }, { lightness: 20 } ] },\r\n\t{ featureType: \"road\", elementType: \"all\", stylers: [ { visibility: \"on\" }, { saturation: -100 }, { lightness: 40 } ] },\r\n\t{ featureType: \"water\", elementType: \"all\", stylers: [ { visibility: \"on\" }, { saturation: -10 }, { lightness: 30 } ] },\r\n\t{ featureType: \"landscape.man_made\", elementType: \"all\", stylers: [ { visibility: \"simplified\" }, { saturation: -60 }, { lightness: 10 } ] },\r\n\t{ featureType: \"landscape.natural\", elementType: \"all\", stylers: [ { visibility: \"simplified\" }, { saturation: -60 }, { lightness: 60 } ] },\r\n\t{ featureType: \"poi\", elementType: \"all\", stylers: [ { visibility: \"off\" }, { saturation: -100 }, { lightness: 60 } ] }, \r\n\t{ featureType: \"transit\", elementType: \"all\", stylers: [ { visibility: \"off\" }, { saturation: -100 }, { lightness: 60 } ] }\r\n]","views":6900,"createdBy":{"name":"RouteXL","url":"http://www.routexl.com"},"createdOn":"2014-01-06T19:39:45.387"},{"id":37,"name":"Lunar Landscape","description":"A cool style with inverted lightness. The dark grey-blue water color contrasts well with blacks and greys. Great for dark websites with a bit of color.","url":"http://snazzymaps.com/style/37/lunar-landscape","json":"\r\n[\r\n\t{\r\n\t stylers: [\r\n\t\t\t{ hue: '#ff1a00' },\r\n\t\t\t{ invert_lightness: true },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: 33 },\r\n\t\t\t{ gamma: 0.5 }\r\n\t ]\r\n\t},{\r\n\t\tfeatureType: 'water',\r\n\t\telementType: 'geometry',\r\n\t\tstylers: [\r\n\t\t\t{ color: '#2D333C' }\r\n\t\t]\r\n\t}\r\n ]","views":6430,"createdBy":{"name":"Veit Stumpf","url":"http://www.osteopathie-stumpf.de/"},"createdOn":"2013-11-12T18:14:40.277"},{"id":35,"name":"Avocado World","description":"A creamy green color palette. ","url":"http://snazzymaps.com/style/35/avocado-world","json":" [ \r\n\t\t{ \r\n\t\t\tfeatureType: 'water', \r\n\t\t\telementType: 'geometry', \r\n\t\t\tstylers: [ \r\n\t\t\t\t{ \"visibility\": \"on\" }, \r\n\t\t\t\t{ \"color\": \"#aee2e0\" } ] \r\n\t\t\t},\r\n\t\t{ \r\n\t\t\tfeatureType: 'landscape', \r\n\t\t\telementType: 'geometry.fill', \r\n\t\t\tstylers: [ \r\n\t\t\t\t{ color: '#abce83' } ] \r\n\t\t},{ \r\n\t\t\tfeatureType: 'poi', \r\n\t\t\telementType: 'geometry.fill', \r\n\t\t\tstylers: [ \r\n\t\t\t\t{ color: '#769E72' } ] \r\n\t\t},{ \r\n\t\t\tfeatureType: 'poi', \r\n\t\t\telementType: 'labels.text.fill', \r\n\t\t\tstylers: [ \r\n\t\t\t\t{ color: '#7B8758' }, \r\n\t\t\t] \r\n\t\t},{ \r\n\t\t\tfeatureType: 'poi', \r\n\t\t\telementType: 'labels.text.stroke', \r\n\t\t\tstylers: [ \r\n\t\t\t\t{ color: '#EBF4A4' }, \r\n\t\t\t] \t\r\n\t\t},{ \r\n\t\t\tfeatureType: 'poi.park', \r\n\t\t\telementType: 'geometry', \r\n\t\t\tstylers: [ \r\n\t\t\t\t{ visibility: 'simplified' }, \r\n\t\t\t\t{ color: '#8dab68' } \r\n\t\t\t] \r\n\t\t},{\r\n\t\t\tfeatureType: 'road', \r\n\t\t\telementType: 'geometry.fill', \r\n\t\t\tstylers: [ \r\n\t\t\t\t{ visibility: 'simplified' }, \r\n\t\t\t]\r\n\t\t},{\r\n\t\t\tfeatureType: 'road', \r\n\t\t\telementType: 'labels.text.fill', \r\n\t\t\tstylers: [ \r\n\t\t\t\t{ color: '#5B5B3F' } \r\n\t\t\t]\r\n\t\t},{\r\n\t\t\tfeatureType: 'road', \r\n\t\t\telementType: 'labels.text.stroke', \r\n\t\t\tstylers: [ \r\n\t\t\t\t{ color: '#ABCE83' } \r\n\t\t\t]\r\n\t\t},{\r\n\t\t\tfeatureType: 'road', \r\n\t\t\telementType: 'labels.icon', \r\n\t\t\tstylers: [ \r\n\t\t\t\t{ visibility: 'off' } \r\n\t\t\t]\t\r\n\t\t},{ \r\n\t\t\tfeatureType: 'road.local', \r\n\t\t\telementType: 'geometry', \r\n\t\t\tstylers: [ \r\n\t\t\t\t{ color: '#A4C67D' }, \r\n\t\t\t]\r\n\t\t},{ \r\n\t\t\tfeatureType: 'road.arterial', \r\n\t\t\telementType: 'geometry', \r\n\t\t\tstylers: [ \r\n\t\t\t\t{ color: '#9BBF72' } \r\n\t\t\t] \r\n\t\t},{ \r\n\t\t\tfeatureType: 'road.highway', \r\n\t\t\telementType: 'geometry', \r\n\t\t\tstylers: [ \r\n\t\t\t\t{ color: '#EBF4A4' } \r\n\t\t\t] \r\n\t\t},{ \r\n\t\t\tfeatureType: 'transit', \r\n\t\t\tstylers: [ \r\n\t\t\t\t{ visibility: 'off' } \r\n\t\t\t] \t \r\n\t\t},{ \r\n\t\t\tfeatureType: 'administrative', \r\n\t\t\telementType: 'geometry.stroke', \r\n\t\t\tstylers: [ \r\n\t\t\t\t{ visibility: 'on' }, \r\n\t\t\t\t{ color: '#87ae79' } \r\n\t\t\t] \r\n\t\t},{ \r\n\t\t\tfeatureType: 'administrative', \r\n\t\t\telementType: 'geometry.fill', \r\n\t\t\tstylers: [ \r\n\t\t\t\t{ color: '#7f2200' }, \r\n\t\t\t\t{ visibility: 'off' } \r\n\t\t\t] \r\n\t\t},{ \r\n\t\t\tfeatureType: 'administrative', \r\n\t\t\telementType: 'labels.text.stroke', \r\n\t\t\tstylers: [ \r\n\t\t\t\t{ color: '#ffffff' }, \r\n\t\t\t\t{ visibility: 'on' }, \r\n\t\t\t\t{ weight: 4.1 } \r\n\t\t\t] \r\n\t\t},{ \r\n\t\t\tfeatureType: 'administrative', \r\n\t\t\telementType: 'labels.text.fill', \r\n\t\t\tstylers: [ \r\n\t\t\t\t{ color: '#495421' }, \r\n\t\t\t] \t\t\t\r\n\t\t},{ \r\n\t\t\tfeatureType: 'administrative.neighborhood', \r\n\t\t\telementType: 'labels', \r\n\t\t\tstylers: [ { visibility: 'off' } ] \r\n\t\t} \r\n\t]","views":6206,"createdBy":{"name":"Tracy Elliott","url":"http://www.glowfruit.com"},"createdOn":"2013-11-09T18:04:34.34"},{"id":17,"name":"Bright & Bubbly","description":"A fun and lively color scheme to match a company's new brand. Very bright colors for the bodies of water to make them stand out - particularly good for lakes and rivers when zoomed into the city detail level. Many \"Points of Interest\" are hidden in order to not clutter the map since custom landmarks and markers are used to highlight the company's own items.","url":"http://snazzymaps.com/style/17/bright-and-bubbly","json":"[\r\n {\r\n \"featureType\": \"water\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#19a0d8\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"administrative\",\r\n \"elementType\": \"labels.text.stroke\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#ffffff\"\r\n },\r\n {\r\n \"weight\": 6\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"administrative\",\r\n \"elementType\": \"labels.text.fill\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#e85113\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road.highway\",\r\n \"elementType\": \"geometry.stroke\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#efe9e4\"\r\n },\r\n {\r\n \"lightness\": -40\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road.arterial\",\r\n \"elementType\": \"geometry.stroke\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#efe9e4\"\r\n },\r\n {\r\n \"lightness\": -20\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road\",\r\n \"elementType\": \"labels.text.stroke\",\r\n \"stylers\": [\r\n {\r\n \"lightness\": 100\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road\",\r\n \"elementType\": \"labels.text.fill\",\r\n \"stylers\": [\r\n {\r\n \"lightness\": -100\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road.highway\",\r\n \"elementType\": \"labels.icon\"\r\n },\r\n {\r\n \"featureType\": \"landscape\",\r\n \"elementType\": \"labels\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"landscape\",\r\n \"stylers\": [\r\n {\r\n \"lightness\": 20\r\n },\r\n {\r\n \"color\": \"#efe9e4\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"landscape.man_made\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"water\",\r\n \"elementType\": \"labels.text.stroke\",\r\n \"stylers\": [\r\n {\r\n \"lightness\": 100\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"water\",\r\n \"elementType\": \"labels.text.fill\",\r\n \"stylers\": [\r\n {\r\n \"lightness\": -100\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi\",\r\n \"elementType\": \"labels.text.fill\",\r\n \"stylers\": [\r\n {\r\n \"hue\": \"#11ff00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi\",\r\n \"elementType\": \"labels.text.stroke\",\r\n \"stylers\": [\r\n {\r\n \"lightness\": 100\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi\",\r\n \"elementType\": \"labels.icon\",\r\n \"stylers\": [\r\n {\r\n \"hue\": \"#4cff00\"\r\n },\r\n {\r\n \"saturation\": 58\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"on\"\r\n },\r\n {\r\n \"color\": \"#f0e4d3\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road.highway\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#efe9e4\"\r\n },\r\n {\r\n \"lightness\": -25\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road.arterial\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#efe9e4\"\r\n },\r\n {\r\n \"lightness\": -10\r\n }\r\n ]\r\n },\r\n // ----- Hides labels for Points of Interests -----\r\n {\r\n \"featureType\": \"poi\",\r\n \"elementType\": \"labels\",\r\n \"stylers\": [\r\n {\r\n // hides both icon and text\r\n //\"visibility\": \"off\"\r\n \r\n // hides just the text\r\n \"visibility\": \"simplified\"\r\n }\r\n ]\r\n },\r\n // ------------------------------------------------\r\n ]","views":5550,"createdBy":{"name":"Paulo Ávila","url":"https://github.com/demoive/"},"createdOn":"2013-10-30T16:39:17.933"},{"id":80,"name":"Cool Grey","description":"A simplified bright map. ","url":"http://snazzymaps.com/style/80/cool-grey","json":"[ { \"featureType\": \"landscape\", \"elementType\": \"labels\", \"stylers\": [ { \"visibility\": \"off\" } ] },{ \"featureType\": \"transit\", \"elementType\": \"labels\", \"stylers\": [ { \"visibility\": \"off\" } ] },{ \"featureType\": \"poi\", \"elementType\": \"labels\", \"stylers\": [ { \"visibility\": \"off\" } ] },{ \"featureType\": \"water\", \"elementType\": \"labels\", \"stylers\": [ { \"visibility\": \"off\" } ] },{ \"featureType\": \"road\", \"elementType\": \"labels.icon\", \"stylers\": [ { \"visibility\": \"off\" } ] },{ \"stylers\": [ { \"hue\": \"#00aaff\" }, { \"saturation\": -100 }, { \"gamma\": 2.15 }, { \"lightness\": 12 } ] },{ \"featureType\": \"road\", \"elementType\": \"labels.text.fill\", \"stylers\": [ { \"visibility\": \"on\" }, { \"lightness\": 24 } ] },{ \"featureType\": \"road\", \"elementType\": \"geometry\", \"stylers\": [ { \"lightness\": 57 } ] } ]","views":5194,"createdBy":{"name":"Nico","url":"http://Fittter.me"},"createdOn":"2014-04-16T02:56:47.393"},{"id":6,"name":"Countries","description":"Example provided by Google showcasing their style API. Great for highlighting countries when zoomed all the way out.","url":"http://snazzymaps.com/style/6/countries","json":"[{ featureType: 'all', stylers: [{visibility: 'off'} ]},{ featureType: 'water', stylers: [{visibility: 'on'},{lightness: -100 } ]} ]","views":5001,"createdBy":{"name":"Google","url":"http://maps-api-tt.appspot.com/apilite/styled/styled.html"},"createdOn":"2013-10-24T22:54:40.863"},{"id":43,"name":"Bentley","description":"A subtle style reminiscent of old paper printed road maps.","url":"http://snazzymaps.com/style/43/bentley","json":"[\r\n\t{\r\n\t\t\"featureType\": \"landscape\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#F1FF00\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": -27.4\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": 9.4\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t},\r\n\t{\r\n\t\t\"featureType\": \"road.highway\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#0099FF\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": -20\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": 36.4\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t},\r\n\t{\r\n\t\t\"featureType\": \"road.arterial\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#00FF4F\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": 0\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": 0\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t},\r\n\t{\r\n\t\t\"featureType\": \"road.local\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#FFB300\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": -38\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": 11.2\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t},\r\n\t{\r\n\t\t\"featureType\": \"water\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#00B6FF\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": 4.2\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": -63.4\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t},\r\n\t{\r\n\t\t\"featureType\": \"poi\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#9FFF00\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": 0\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": 0\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t}\r\n]","views":4890,"createdBy":{"name":"Ian Thompson","url":"http://it-architecture.net"},"createdOn":"2013-11-25T16:29:24.297"},{"id":22,"name":"Old Timey","description":"An old timey color scheme provided by Google on their Maps API home page. Pure awesomeness in subtle browns and greys.","url":"http://snazzymaps.com/style/22/old-timey","json":"[{featureType:\"administrative\",stylers:[{visibility:\"off\"}]},{featureType:\"poi\",stylers:[{visibility:\"simplified\"}]},{featureType:\"road\",stylers:[{visibility:\"simplified\"}]},{featureType:\"water\",\r\nstylers:[{visibility:\"simplified\"}]},{featureType:\"transit\",stylers:[{visibility:\"simplified\"}]},{featureType:\"landscape\",stylers:[{visibility:\"simplified\"}]},{featureType:\"road.highway\",stylers:[{visibility:\"off\"}]},{featureType:\"road.local\",stylers:[{visibility:\"on\"}]},{featureType:\"road.highway\",elementType:\"geometry\",stylers:[{visibility:\"on\"}]},{featureType:\"water\",stylers:[{color:\"#84afa3\"},{lightness:52}]},{stylers:[{saturation:-77}]},{featureType:\"road\"}]","views":4512,"createdBy":{"name":"Google","url":"https://embed-dot-more-than-a-map.appspot.com/demos/basemaps/tokyo"},"createdOn":"2013-11-04T03:36:27.687"},{"id":7,"name":"Icy Blue","description":"A simple light blue theme that looks great at any zoom level.","url":"http://snazzymaps.com/style/7/icy-blue","json":"[{stylers:[{hue:'#2c3e50'},{saturation:250}]},{featureType:'road',elementType:'geometry',stylers:[{lightness:50},{visibility:'simplified'}]},{featureType:'road',elementType:'labels',stylers:[{visibility:'off'}]}]","views":4505,"createdBy":{"name":"Sahir Memon","url":"http://trendylists.com"},"createdOn":"2013-10-24T22:54:41.913"},{"id":74,"name":"becomeadinosaur","description":"A clean and flat style.","url":"http://snazzymaps.com/style/74/becomeadinosaur","json":"[\r\n {\r\n \"elementType\": \"labels.text\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"landscape.natural\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"color\": \"#f5f5f2\" },\r\n { \"visibility\": \"on\" }\r\n ]\r\n },{\r\n \"featureType\": \"administrative\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"transit\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"poi.attraction\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"landscape.man_made\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"color\": \"#ffffff\" },\r\n { \"visibility\": \"on\" }\r\n ]\r\n },{\r\n \"featureType\": \"poi.business\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"poi.medical\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"poi.place_of_worship\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"poi.school\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"poi.sports_complex\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.highway\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"color\": \"#ffffff\" },\r\n { \"visibility\": \"simplified\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.arterial\",\r\n \"stylers\": [\r\n { \"visibility\": \"simplified\" },\r\n { \"color\": \"#ffffff\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.highway\",\r\n \"elementType\": \"labels.icon\",\r\n \"stylers\": [\r\n { \"color\": \"#ffffff\" },\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.highway\",\r\n \"elementType\": \"labels.icon\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.arterial\",\r\n \"stylers\": [\r\n { \"color\": \"#ffffff\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.local\",\r\n \"stylers\": [\r\n { \"color\": \"#ffffff\" }\r\n ]\r\n },{\r\n \"featureType\": \"poi.park\",\r\n \"elementType\": \"labels.icon\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"poi\",\r\n \"elementType\": \"labels.icon\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"water\",\r\n \"stylers\": [\r\n { \"color\": \"#71c8d4\" }\r\n ]\r\n },{\r\n \"featureType\": \"landscape\",\r\n \"stylers\": [\r\n { \"color\": \"#e5e8e7\" }\r\n ]\r\n },{\r\n \"featureType\": \"poi.park\",\r\n \"stylers\": [\r\n { \"color\": \"#8ba129\" }\r\n ]\r\n },{\r\n \"featureType\": \"road\",\r\n \"stylers\": [\r\n { \"color\": \"#ffffff\" }\r\n ]\r\n },{\r\n \"featureType\": \"poi.sports_complex\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"color\": \"#c7c7c7\" },\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"water\",\r\n \"stylers\": [\r\n { \"color\": \"#a0d3d3\" }\r\n ]\r\n },{\r\n \"featureType\": \"poi.park\",\r\n \"stylers\": [\r\n { \"color\": \"#91b65d\" }\r\n ]\r\n },{\r\n \"featureType\": \"poi.park\",\r\n \"stylers\": [\r\n { \"gamma\": 1.51 }\r\n ]\r\n },{\r\n \"featureType\": \"road.local\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.local\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"visibility\": \"on\" }\r\n ]\r\n },{\r\n \"featureType\": \"poi.government\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"landscape\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"road\",\r\n \"elementType\": \"labels\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.arterial\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"visibility\": \"simplified\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.local\",\r\n \"stylers\": [\r\n { \"visibility\": \"simplified\" }\r\n ]\r\n },{\r\n \"featureType\": \"road\" },{\r\n \"featureType\": \"road\" },{\r\n },{\r\n \"featureType\": \"road.highway\" }\r\n]","views":4465,"createdBy":{"name":"becomeadinosaur","url":"http://snazzymaps.com"},"createdOn":"2014-02-28T15:11:28.38"},{"id":61,"name":"Blue Essence","description":"A light blue style that helps you focus on content on the map.\r\nGreat if you use lots of pins and want to have highlighted transportation systems.","url":"http://snazzymaps.com/style/61/blue-essence","json":"[\r\n {\r\n featureType: \"landscape.natural\",\r\n elementType: \"geometry.fill\",\r\n stylers: [\r\n { \"visibility\": \"on\" },\r\n { \"color\": \"#e0efef\" }\r\n ]\r\n },{\r\n featureType: \"poi\",\r\n elementType: \"geometry.fill\",\r\n stylers: [\r\n { \"visibility\": \"on\" },\r\n { \"hue\": \"#1900ff\" },\r\n { \"color\": \"#c0e8e8\" }\r\n ]\r\n },{\r\n //buildings\r\n featureType: \"landscape.man_made\",\r\n elementType: \"geometry.fill\"\r\n },{\r\n featureType: \"road\",\r\n elementType: \"geometry\",\r\n stylers: [\r\n { lightness: 100 },\r\n { visibility: \"simplified\" }\r\n ]\r\n },{\r\n featureType: \"road\",\r\n elementType: \"labels\",\r\n stylers: [\r\n { visibility: \"off\" }\r\n ]\r\n },{\r\n featureType: 'water',\r\n stylers: [\r\n { color: '#7dcdcd' }\r\n ]\r\n },{\r\n featureType: 'transit.line',\r\n elementType: 'geometry',\r\n stylers: [\r\n { visibility: 'on' },\r\n { lightness: 700 }\r\n ]\r\n }\r\n]","views":4350,"createdBy":{"name":"Evo","url":"http://reactorio.github.io"},"createdOn":"2014-01-28T20:24:12.717"},{"id":12,"name":"Snazzy Maps","description":"A colour scheme using the colours from this very website! Bright green land contrasted with dark grey water. Varying shades of green for roads, white labels, and thin borders results in a very Snazzy Map!","url":"http://snazzymaps.com/style/12/snazzy-maps","json":"[{\"featureType\": \"water\",\"elementType\": \"geometry\",\"stylers\": [{ \"color\": \"#333739\" }]},{\"featureType\": \"landscape\",\"elementType\": \"geometry\",\"stylers\": [{ \"color\": \"#2ecc71\" }]},{\"featureType\": \"poi\",\"stylers\": [{ \"color\": \"#2ecc71\" },{ \"lightness\": -7 }]},{\"featureType\": \"road.highway\",\"elementType\": \"geometry\",\"stylers\": [{ \"color\": \"#2ecc71\" },{ \"lightness\": -28 }]},{\"featureType\": \"road.arterial\",\"elementType\": \"geometry\",\"stylers\": [{ \"color\": \"#2ecc71\" },{ \"visibility\": \"on\" },{ \"lightness\": -15 }]},{\"featureType\": \"road.local\",\"elementType\": \"geometry\",\"stylers\": [{ \"color\": \"#2ecc71\" },{ \"lightness\": -18 }]},{\"elementType\": \"labels.text.fill\",\"stylers\": [{ \"color\": \"#ffffff\" }]},{\"elementType\": \"labels.text.stroke\",\"stylers\": [{ \"visibility\": \"off\" }]},{\"featureType\": \"transit\",\"elementType\": \"geometry\",\"stylers\": [{ \"color\": \"#2ecc71\" },{ \"lightness\": -34 }]},{\"featureType\": \"administrative\",\"elementType\": \"geometry\",\"stylers\": [{ \"visibility\": \"on\" },{ \"color\": \"#333739\" },{ \"weight\": 0.8 }]},{\"featureType\": \"poi.park\",\"stylers\": [{ \"color\": \"#2ecc71\" }]},{\"featureType\": \"road\",\"elementType\": \"geometry.stroke\",\"stylers\": [{ \"color\": \"#333739\" },{ \"weight\": 0.3 },{ \"lightness\": 10 }]}]","views":4248,"createdBy":{"name":"Adam Krogh","url":"http://atmist.com"},"createdOn":"2013-10-25T05:31:16.67"},{"id":60,"name":"Blue Gray","description":"A light blue gray take on the default map style. ","url":"http://snazzymaps.com/style/60/blue-gray","json":"[\r\n {\r\n \"featureType\": \"water\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"on\"\r\n },\r\n {\r\n \"color\": \"#b5cbe4\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"landscape\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#efefef\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road.highway\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#83a5b0\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road.arterial\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#bdcdd3\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road.local\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#ffffff\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi.park\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#e3eed3\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"administrative\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"on\"\r\n },\r\n {\r\n \"lightness\": 33\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road\"\r\n },\r\n {\r\n \"featureType\": \"poi.park\",\r\n \"elementType\": \"labels\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"on\"\r\n },\r\n {\r\n \"lightness\": 20\r\n }\r\n ]\r\n },\r\n {},\r\n {\r\n \"featureType\": \"road\",\r\n \"stylers\": [\r\n {\r\n \"lightness\": 20\r\n }\r\n ]\r\n }\r\n]","views":4230,"createdBy":{"name":"Grace","url":"http://snazzymaps.com"},"createdOn":"2014-01-28T15:17:37.06"},{"id":55,"name":"Subtle Greyscale Map","description":"A subtle greyscale color scheme that works great for website/architectural design use. It is built by Google Map Customizer, which allows you to customize the colors on a Google Map and get large, high resolution images.","url":"http://snazzymaps.com/style/55/subtle-greyscale-map","json":"[\r\n\t{\r\n\t\tfeatureType: 'poi',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#000000' },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: -100 },\r\n\t\t\t{ visibility: 'off' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'poi',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#000000' },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: -100 },\r\n\t\t\t{ visibility: 'off' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'administrative',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#000000' },\r\n\t\t\t{ saturation: 0 },\r\n\t\t\t{ lightness: -100 },\r\n\t\t\t{ visibility: 'off' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'road',\r\n\t\telementType: 'labels',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#ffffff' },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: 100 },\r\n\t\t\t{ visibility: 'off' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'water',\r\n\t\telementType: 'labels',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#000000' },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: -100 },\r\n\t\t\t{ visibility: 'off' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'road.local',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#ffffff' },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: 100 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'water',\r\n\t\telementType: 'geometry',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#ffffff' },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: 100 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'transit',\r\n\t\telementType: 'labels',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#000000' },\r\n\t\t\t{ saturation: 0 },\r\n\t\t\t{ lightness: -100 },\r\n\t\t\t{ visibility: 'off' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'landscape',\r\n\t\telementType: 'labels',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#000000' },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: -100 },\r\n\t\t\t{ visibility: 'off' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'road',\r\n\t\telementType: 'geometry',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#bbbbbb' },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: 26 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'landscape',\r\n\t\telementType: 'geometry',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#dddddd' },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: -3 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t}\r\n]","views":3769,"createdBy":{"name":"Aaron Cheng","url":"http://www.chengfolio.com"},"createdOn":"2014-01-06T19:40:06.227"},{"id":30,"name":"Cobalt","description":"Deep blue style with dark ground elements and highlighted roads.","url":"http://snazzymaps.com/style/30/cobalt","json":"[\r\n\t{\r\n\t\tfeatureType: \"all\",\r\n\t\telementType: \"all\",\r\n\t\tstylers: [\r\n\t\t{\r\n\t\t\tinvert_lightness: true\r\n\t\t},\r\n\t\t{\r\n\t\t\tsaturation: 10\r\n\t\t},\r\n\r\n\t\t{\r\n\t\t\tlightness: 30\r\n\t\t},\r\n\r\n\t\t{\r\n\t\t\tgamma: 0.5\r\n\t\t},\r\n\r\n\t\t{\r\n\t\t\thue: \"#435158\"\r\n\t\t}\r\n\t\t]\r\n\t}\r\n\t]","views":3635,"createdBy":{"name":"macodev","url":"http://macodev.com"},"createdOn":"2013-11-07T15:17:05.343"},{"id":79,"name":"Black and White","description":"Simple blank and white style without added information, just street names.","url":"http://snazzymaps.com/style/79/black-and-white","json":"[ { \"featureType\": \"road\", \"elementType\": \"labels\", \"stylers\": [ { \"visibility\": \"on\" } ] },{ \"featureType\": \"poi\", \"stylers\": [ { \"visibility\": \"off\" } ] },{ \"featureType\": \"administrative\", \"stylers\": [ { \"visibility\": \"off\" } ] },{ \"featureType\": \"road\", \"elementType\": \"geometry.fill\", \"stylers\": [ { \"color\": \"#000000\" }, { \"weight\": 1 } ] },{ \"featureType\": \"road\", \"elementType\": \"geometry.stroke\", \"stylers\": [ { \"color\": \"#000000\" }, { \"weight\": 0.8 } ] },{ \"featureType\": \"landscape\", \"stylers\": [ { \"color\": \"#ffffff\" } ] },{ \"featureType\": \"water\", \"stylers\": [ { \"visibility\": \"off\" } ] },{ \"featureType\": \"transit\", \"stylers\": [ { \"visibility\": \"off\" } ] },{ \"elementType\": \"labels\", \"stylers\": [ { \"visibility\": \"off\" } ] },{ \"elementType\": \"labels.text\", \"stylers\": [ { \"visibility\": \"on\" } ] },{ \"elementType\": \"labels.text.stroke\", \"stylers\": [ { \"color\": \"#ffffff\" } ] },{ \"elementType\": \"labels.text.fill\", \"stylers\": [ { \"color\": \"#000000\" } ] },{ \"elementType\": \"labels.icon\", \"stylers\": [ { \"visibility\": \"on\" } ] } ]","views":3627,"createdBy":{"name":null,"url":"http://snazzymaps.com"},"createdOn":"2014-04-16T02:56:22.413"},{"id":31,"name":"Red Hues","description":"A simple map styled with red hues.","url":"http://snazzymaps.com/style/31/red-hues","json":"[\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t// Style the map with the custom hue\r\n\t\t\t\t\t\t\tstylers: [\r\n\t\t\t\t\t\t\t\t{ \"hue\":\"#dd0d0d\" }\r\n\t\t\t\t\t\t\t]\r\n\t\t\t\t\t\t},\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t// Remove road labels\r\n\t\t\t\t\t\t\tfeatureType:\"road\",\r\n\t\t\t\t\t\t\telementType:\"labels\",\r\n\t\t\t\t\t\t\tstylers: [\r\n\t\t\t\t\t\t\t\t{ \"visibility\":\"off\" }\r\n\t\t\t\t\t\t\t]\r\n\t\t\t\t\t\t},\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t// Style the road\r\n\t\t\t\t\t\t\tfeatureType:\"road\",\r\n\t\t\t\t\t\t\telementType:\"geometry\",\r\n\t\t\t\t\t\t\tstylers: [\r\n\t\t\t\t\t\t\t\t{ \"lightness\":100 },\r\n\t\t\t\t\t\t\t\t{ \"visibility\":\"simplified\" }\r\n\t\t\t\t\t\t\t]\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t]","views":3351,"createdBy":{"name":"Daniel Morris","url":"http://www.dannymorris.org.uk"},"createdOn":"2013-11-09T17:57:07.057"},{"id":21,"name":"Hopper","description":"Based upon Edward Hopper's paintings","url":"http://snazzymaps.com/style/21/hopper","json":"[\r\n\t{\r\n\t\tfeatureType: 'water',\r\n\t\telementType: 'geometry',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#165c64' },\r\n\t\t\t{ saturation: 34 },\r\n\t\t\t{ lightness: -69 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'landscape',\r\n\t\telementType: 'geometry',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#b7caaa' },\r\n\t\t\t{ saturation: -14 },\r\n\t\t\t{ lightness: -18 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'landscape.man_made',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#cbdac1' },\r\n\t\t\t{ saturation: -6 },\r\n\t\t\t{ lightness: -9 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'road',\r\n\t\telementType: 'geometry',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#8d9b83' },\r\n\t\t\t{ saturation: -89 },\r\n\t\t\t{ lightness: -12 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'road.highway',\r\n\t\telementType: 'geometry',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#d4dad0' },\r\n\t\t\t{ saturation: -88 },\r\n\t\t\t{ lightness: 54 },\r\n\t\t\t{ visibility: 'simplified' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'road.arterial',\r\n\t\telementType: 'geometry',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#bdc5b6' },\r\n\t\t\t{ saturation: -89 },\r\n\t\t\t{ lightness: -3 },\r\n\t\t\t{ visibility: 'simplified' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'road.local',\r\n\t\telementType: 'geometry',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#bdc5b6' },\r\n\t\t\t{ saturation: -89 },\r\n\t\t\t{ lightness: -26 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'poi',\r\n\t\telementType: 'geometry',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#c17118' },\r\n\t\t\t{ saturation: 61 },\r\n\t\t\t{ lightness: -45 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'poi.park',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#8ba975' },\r\n\t\t\t{ saturation: -46 },\r\n\t\t\t{ lightness: -28 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'transit',\r\n\t\telementType: 'geometry',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#a43218' },\r\n\t\t\t{ saturation: 74 },\r\n\t\t\t{ lightness: -51 },\r\n\t\t\t{ visibility: 'simplified' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'administrative.province',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#ffffff' },\r\n\t\t\t{ saturation: 0 },\r\n\t\t\t{ lightness: 100 },\r\n\t\t\t{ visibility: 'simplified' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'administrative.neighborhood',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#ffffff' },\r\n\t\t\t{ saturation: 0 },\r\n\t\t\t{ lightness: 100 },\r\n\t\t\t{ visibility: 'off' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'administrative.locality',\r\n\t\telementType: 'labels',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#ffffff' },\r\n\t\t\t{ saturation: 0 },\r\n\t\t\t{ lightness: 100 },\r\n\t\t\t{ visibility: 'off' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'administrative.land_parcel',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#ffffff' },\r\n\t\t\t{ saturation: 0 },\r\n\t\t\t{ lightness: 100 },\r\n\t\t\t{ visibility: 'off' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'administrative',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#3a3935' },\r\n\t\t\t{ saturation: 5 },\r\n\t\t\t{ lightness: -57 },\r\n\t\t\t{ visibility: 'off' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'poi.medical',\r\n\t\telementType: 'geometry',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#cba923' },\r\n\t\t\t{ saturation: 50 },\r\n\t\t\t{ lightness: -46 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t}\r\n]\r\n","views":3303,"createdBy":{"name":"Holly Valero","url":"http://hollyworks.com"},"createdOn":"2013-11-03T16:56:48.357"},{"id":47,"name":"Nature","description":"A nature inspired style with green features on a grey landscape.","url":"http://snazzymaps.com/style/47/nature","json":"[\r\n\t{\r\n\t\t\"featureType\": \"landscape\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#FFA800\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": 0\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": 0\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t},\r\n\t{\r\n\t\t\"featureType\": \"road.highway\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#53FF00\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": -73\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": 40\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t},\r\n\t{\r\n\t\t\"featureType\": \"road.arterial\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#FBFF00\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": 0\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": 0\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t},\r\n\t{\r\n\t\t\"featureType\": \"road.local\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#00FFFD\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": 0\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": 30\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t},\r\n\t{\r\n\t\t\"featureType\": \"water\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#00BFFF\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": 6\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": 8\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t},\r\n\t{\r\n\t\t\"featureType\": \"poi\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#679714\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": 33.4\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": -25.4\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t}\r\n\r\n]","views":3224,"createdBy":{"name":"Tanja Lederer","url":"http://www.ergotherapie-lederer.de/"},"createdOn":"2013-12-09T22:08:05.067"},{"id":77,"name":"Clean Cut","description":"A clean and simple style for customizing your Google maps.","url":"http://snazzymaps.com/style/77/clean-cut","json":"[\r\n {\r\n featureType: \"road\",\r\n elementType: \"geometry\",\r\n stylers: [\r\n { lightness: 100 },\r\n { visibility: \"simplified\" }\r\n ]\r\n },{\r\n \"featureType\": \"water\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"on\"\r\n },\r\n {\r\n \"color\": \"#C6E2FF\",\r\n }\r\n ]\r\n }, {\r\n \"featureType\": \"poi\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#C5E3BF\"\r\n }\r\n ]\r\n },{\r\n \"featureType\": \"road\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#D1D1B8\"\r\n }\r\n ]\r\n }\r\n]","views":3065,"createdBy":{"name":"Scott Marshall","url":"http://marshall-design.com"},"createdOn":"2014-02-28T15:15:48.527"},{"id":16,"name":"Unimposed Topography","description":"Originally noticed on a http://swnext.co/ page, this style is a neutral yet detailed view of the world. Good for anonymous, natural views of the globe without indications of humans.","url":"http://snazzymaps.com/style/16/unimposed-topography","json":"[\r\n {\r\n featureType: 'administrative',\r\n elementType: 'all',\r\n stylers: [\r\n {\r\n visibility: 'off'\r\n }\r\n ]\r\n }, {\r\n featureType: 'poi',\r\n elementType: 'all',\r\n stylers: [\r\n {\r\n visibility: 'off'\r\n }\r\n ]\r\n }, {\r\n featureType: 'road',\r\n elementType: 'all',\r\n stylers: [\r\n {\r\n visibility: 'off'\r\n }\r\n ]\r\n }, {\r\n featureType: 'transit',\r\n elementType: 'all',\r\n stylers: [\r\n {\r\n visibility: 'off'\r\n }\r\n ]\r\n }, {\r\n featureType: 'landscape',\r\n elementType: 'all',\r\n stylers: [\r\n {\r\n hue: '#727D82'\r\n }, {\r\n lightness: -30\r\n }, {\r\n saturation: -80\r\n }\r\n ]\r\n }, {\r\n featureType: 'water',\r\n elementType: 'all',\r\n stylers: [\r\n {\r\n visibility: 'simplified'\r\n }, {\r\n hue: '#F3F4F4'\r\n }, {\r\n lightness: 80\r\n }, {\r\n saturation: -80\r\n }\r\n ]\r\n }\r\n]","views":3037,"createdBy":{"name":"Paulo Ávila","url":"https://github.com/demoive/"},"createdOn":"2013-10-30T16:38:03.443"},{"id":36,"name":"Flat green","description":"This green style is inspired by Flat Design and works very well on contact pages of colorful websites.","url":"http://snazzymaps.com/style/36/flat-green","json":"[{ \"stylers\": [ { \"hue\": \"#bbff00\" }, { \"weight\": 0.5 }, { \"gamma\": 0.5 } ] },{ \"elementType\": \"labels\", \"stylers\": [ { \"visibility\": \"off\" } ] },{ \"featureType\": \"landscape.natural\", \"stylers\": [ { \"color\": \"#a4cc48\" } ] },{ \"featureType\": \"road\", \"elementType\": \"geometry\", \"stylers\": [ { \"color\": \"#ffffff\" }, { \"visibility\": \"on\" }, { \"weight\": 1 } ] },{ \"featureType\": \"administrative\", \"elementType\": \"labels\", \"stylers\": [ { \"visibility\": \"on\" } ] },{ \"featureType\": \"road.highway\", \"elementType\": \"labels\", \"stylers\": [ { \"visibility\": \"simplified\" }, { \"gamma\": 1.14 }, { \"saturation\": -18 } ] },{ \"featureType\": \"road.highway.controlled_access\", \"elementType\": \"labels\", \"stylers\": [ { \"saturation\": 30 }, { \"gamma\": 0.76 } ] },{ \"featureType\": \"road.local\", \"stylers\": [ { \"visibility\": \"simplified\" }, { \"weight\": 0.4 }, { \"lightness\": -8 } ] },{ \"featureType\": \"water\", \"stylers\": [ { \"color\": \"#4aaecc\" } ] },{ \"featureType\": \"landscape.man_made\", \"stylers\": [ { \"color\": \"#718e32\" } ] },{ \"featureType\": \"poi.business\", \"stylers\": [ { \"saturation\": 68 }, { \"lightness\": -61 } ] },{ \"featureType\": \"administrative.locality\", \"elementType\": \"labels.text.stroke\", \"stylers\": [ { \"weight\": 2.7 }, { \"color\": \"#f4f9e8\" } ] },{ \"featureType\": \"road.highway.controlled_access\", \"elementType\": \"geometry.stroke\", \"stylers\": [ { \"weight\": 1.5 }, { \"color\": \"#e53013\" }, { \"saturation\": -42 }, { \"lightness\": 28 } ] }]","views":2971,"createdBy":{"name":"Jasper","url":"http://www.keywebdesign.nl"},"createdOn":"2013-11-12T18:11:20.233"},{"id":3,"name":"Red Alert","description":"Inspired by CloudMade's style of the same name. Bold orange and reds contrast great with the unique water colour. Contrasting road colours makes it easy to read even when zoomed in.","url":"http://snazzymaps.com/style/3/red-alert","json":"[{'featureType': 'water','elementType': 'geometry','stylers': [{ 'color': '#ffdfa6' }]},{'featureType': 'landscape','elementType': 'geometry','stylers': [{ 'color': '#b52127' }]},{'featureType': 'poi','elementType': 'geometry','stylers': [{ 'color': '#c5531b' }]},{'featureType': 'road.highway','elementType': 'geometry.fill','stylers': [{ 'color': '#74001b' },{ 'lightness': -10 }]},{'featureType': 'road.highway','elementType': 'geometry.stroke','stylers': [{ 'color': '#da3c3c' }]},{'featureType': 'road.arterial','elementType': 'geometry.fill','stylers': [{ 'color': '#74001b' }]},{'featureType': 'road.arterial','elementType': 'geometry.stroke','stylers': [{ 'color': '#da3c3c' }]},{'featureType': 'road.local','elementType': 'geometry.fill','stylers': [{ 'color': '#990c19' }]},{'elementType': 'labels.text.fill','stylers': [{ 'color': '#ffffff' }]},{'elementType': 'labels.text.stroke','stylers': [{ 'color': '#74001b' },{ 'lightness': -8 }]},{'featureType': 'transit','elementType': 'geometry','stylers': [{ 'color': '#6a0d10' },{ 'visibility': 'on' }]},{'featureType': 'administrative','elementType': 'geometry','stylers': [{ 'color': '#ffdfa6' },{ 'weight': 0.4 }]},{'featureType': 'road.local','elementType': 'geometry.stroke','stylers': [{ 'visibility': 'off' }]}]","views":2846,"createdBy":{"name":"Adam Krogh","url":"http://atmist.com"},"createdOn":"2013-10-24T22:54:37.223"},{"id":8,"name":"Turquoise Water","description":"A simple colour theme highlighted by bright turquoise water and subtle tinted land.","url":"http://snazzymaps.com/style/8/turquoise-water","json":"[{stylers:[{hue:'#16a085'},{saturation:0}]},{featureType:'road',elementType:'geometry',stylers:[{lightness:100},{visibility:'simplified'}]},{featureType:'road',elementType:'labels',stylers:[{visibility:'off'}]}]","views":2835,"createdBy":{"name":"Sahir Memon","url":"http://trendylists.com"},"createdOn":"2013-10-24T22:54:43.277"},{"id":14,"name":"Vintage","description":"A dark two-tone map with a striking red color against a dark grey.","url":"http://snazzymaps.com/style/14/vintage","json":"[{\"stylers\": [{ \"visibility\": \"off\" }]},{\"featureType\": \"water\",\"stylers\": [{ \"visibility\": \"on\" },{ \"color\": \"#2f343b\" }]},{\"featureType\": \"landscape\",\"stylers\": [{ \"visibility\": \"on\" },{ \"color\": \"#703030\" }]},{\"featureType\": \"administrative\",\"elementType\": \"geometry.stroke\",\"stylers\": [{ \"visibility\": \"on\" },{ \"color\": \"#2f343b\" },{ \"weight\": 1 }]}]","views":2817,"createdBy":{"name":"Adam Krogh","url":"http://atmist.com"},"createdOn":"2013-10-30T04:27:54.58"},{"id":52,"name":"Souldisco","description":"A nice, clean and simple gray & green map that is cool for the eyes.","url":"http://snazzymaps.com/style/52/souldisco","json":"[ { \"stylers\": [ { \"saturation\": -100 }, { \"gamma\": 0.8 }, { \"lightness\": 4 }, { \"visibility\": \"on\" } ] },{ \"featureType\": \"landscape.natural\", \"stylers\": [ { \"visibility\": \"on\" }, { \"color\": \"#5dff00\" }, { \"gamma\": 4.97 }, { \"lightness\": -5 }, { \"saturation\": 100 } ] } ]","views":2738,"createdBy":{"name":"Codespacing","url":"http://www.codespacing.com/"},"createdOn":"2014-01-06T19:36:28.403"},{"id":28,"name":"Bluish","description":"It's a light and simple blue map. With reduced labels.","url":"http://snazzymaps.com/style/28/bluish","json":"[ {\r\n\t\t\t\"stylers\": [\r\n\t\t\t { \"hue\": \"#007fff\" },\r\n\t\t\t { \"saturation\": 89 }\r\n\t\t\t]\r\n\t\t },{\r\n\t\t\t\"featureType\": \"water\",\r\n\t\t\t\"stylers\": [\r\n\t\t\t { \"color\": \"#ffffff\" }\r\n\t\t\t]\r\n\t\t },{\r\n\t\t\t\"featureType\": \"administrative.country\",\r\n\t\t\t\"elementType\": \"labels\",\r\n\t\t\t\"stylers\": [\r\n\t\t\t { \"visibility\": \"off\" }\r\n\t\t\t]\r\n\t\t }\r\n]","views":2630,"createdBy":{"name":"Stefan","url":"http://perfekterholzschutz.de"},"createdOn":"2013-11-07T15:15:36.32"},{"id":83,"name":"Muted Blue","description":"An unobtrusive blue design for minimal user-experiences. Design for the Rock RMS project.","url":"http://snazzymaps.com/style/83/muted-blue","json":"[\r\n\t{\"featureType\": \"all\",\r\n\t\t\"stylers\":[\r\n\t\t\t{\"saturation\": 0},\r\n\t\t\t{\"hue\": \"#e7ecf0\"}\r\n\t\t]\r\n\t},\r\n\t{\"featureType\": \"road\",\r\n\t\t\"stylers\":[\r\n\t\t\t{\"saturation\": -70}\r\n\t\t]\r\n\t},\r\n\t{\"featureType\": \"transit\",\r\n\t\t\"stylers\":[\r\n\t\t\t{\"visibility\": \"off\"}\r\n\t\t]\r\n\t},\r\n\t{\"featureType\": \"poi\",\r\n\t\t\"stylers\":[\r\n\t\t\t{\"visibility\": \"off\"}\r\n\t\t]\r\n\t},\r\n\t{\"featureType\": \"water\",\r\n\t\t\"stylers\":[\r\n\t\t\t{\"visibility\": \"simplified\"},\r\n\t\t\t{\"saturation\": -60}\r\n\t\t]\r\n\t}\r\n]","views":2475,"createdBy":{"name":"Jon Edmiston","url":"http://www.rockrms.com"},"createdOn":"2014-04-16T02:58:37.86"},{"id":58,"name":"Simple Labels","description":"A simple and clean map. Removed elements include all street names, points of interest icons and text, and public transit labels. ","url":"http://snazzymaps.com/style/58/simple-labels","json":"[\r\n {\r\n \"featureType\": \"road\",\r\n \"elementType\": \"labels\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"poi\",\r\n \"elementType\": \"labels\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"transit\",\r\n \"elementType\": \"labels.text\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n }\r\n]","views":2394,"createdBy":{"name":"wjw","url":"http://snazzymaps.com"},"createdOn":"2014-01-28T15:15:04.87"},{"id":46,"name":"Homage to Toner","description":"A high-contrast B&W style similar to the Stamen-designed \"Toner\" basemap","url":"http://snazzymaps.com/style/46/homage-to-toner","json":"[\r\n {\r\n featureType: 'water',\r\n elementType: 'all',\r\n stylers: [\r\n { hue: '#000000' },\r\n { saturation: -100 },\r\n { lightness: -100 },\r\n { visibility: 'simplified' }\r\n ]\r\n },{\r\n featureType: 'landscape',\r\n elementType: 'all',\r\n stylers: [\r\n { hue: '#FFFFFF' },\r\n { saturation: -100 },\r\n { lightness: 100 },\r\n { visibility: 'simplified' }\r\n ]\r\n },{\r\n featureType: 'landscape.man_made',\r\n elementType: 'all',\r\n stylers: [\r\n\r\n ]\r\n },{\r\n featureType: 'landscape.natural',\r\n elementType: 'all',\r\n stylers: [\r\n\r\n ]\r\n },{\r\n featureType: 'poi.park',\r\n elementType: 'geometry',\r\n stylers: [\r\n { hue: '#ffffff' },\r\n { saturation: -100 },\r\n { lightness: 100 },\r\n { visibility: 'off' }\r\n ]\r\n },{\r\n featureType: 'road',\r\n elementType: 'all',\r\n stylers: [\r\n { hue: '#333333' },\r\n { saturation: -100 },\r\n { lightness: -69 },\r\n { visibility: 'simplified' }\r\n ]\r\n },{\r\n featureType: 'poi.attraction',\r\n elementType: 'geometry',\r\n stylers: [\r\n { hue: '#ffffff' },\r\n { saturation: -100 },\r\n { lightness: 100 },\r\n { visibility: 'off' }\r\n ]\r\n },{\r\n featureType: 'administrative.locality',\r\n elementType: 'geometry',\r\n stylers: [\r\n { hue: '#ffffff' },\r\n { saturation: 0 },\r\n { lightness: 100 },\r\n { visibility: 'off' }\r\n ]\r\n },{\r\n featureType: 'poi.government',\r\n elementType: 'geometry',\r\n stylers: [\r\n { hue: '#ffffff' },\r\n { saturation: -100 },\r\n { lightness: 100 },\r\n { visibility: 'off' }\r\n ]\r\n }\r\n ]","views":2037,"createdBy":{"name":"Bill Morris","url":"http://geosprocket.io"},"createdOn":"2013-12-02T15:37:35.36"},{"id":40,"name":"Vitamin C","description":"Inspired by the Adobe Kuler theme of the same name. Highlighted highways in bright orange on a blue and turquoise background.","url":"http://snazzymaps.com/style/40/vitamin-c","json":"[\r\n {\r\n \"featureType\": \"water\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"color\": \"#004358\" }\r\n ]\r\n },{\r\n \"featureType\": \"landscape\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"color\": \"#1f8a70\" }\r\n ]\r\n },{\r\n \"featureType\": \"poi\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"color\": \"#1f8a70\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.highway\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"color\": \"#fd7400\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.arterial\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"color\": \"#1f8a70\" },\r\n { \"lightness\": -20 }\r\n ]\r\n },{\r\n \"featureType\": \"road.local\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"color\": \"#1f8a70\" },\r\n { \"lightness\": -17 }\r\n ]\r\n },{\r\n \"elementType\": \"labels.text.stroke\",\r\n \"stylers\": [\r\n { \"color\": \"#ffffff\" },\r\n { \"visibility\": \"on\" },\r\n { \"weight\": 0.9 }\r\n ]\r\n },{\r\n \"elementType\": \"labels.text.fill\",\r\n \"stylers\": [\r\n { \"visibility\": \"on\" },\r\n { \"color\": \"#ffffff\" }\r\n ]\r\n },{\r\n \"featureType\": \"poi\",\r\n \"elementType\": \"labels\",\r\n \"stylers\": [\r\n { \"visibility\": \"simplified\" }\r\n ]\r\n },{\r\n \"elementType\": \"labels.icon\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"transit\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"color\": \"#1f8a70\" },\r\n { \"lightness\": -10 }\r\n ]\r\n },{\r\n },{\r\n \"featureType\": \"administrative\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"color\": \"#1f8a70\" },\r\n { \"weight\": 0.7 }\r\n ]\r\n }\r\n]","views":1882,"createdBy":{"name":"Adam Krogh","url":"http://atmist.com"},"createdOn":"2013-11-19T02:52:40.237"},{"id":65,"name":"Just places","description":"Do you remember those ultra-tidy historical atlas backgrounds? This map shows only place labels, their circle markers and a couple of borders. Wonderful for thematic overlaying at zoom levels up to 10.","url":"http://snazzymaps.com/style/65/just-places","json":"[\r\n {\r\n \"featureType\": \"road\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"poi\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"landscape\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"color\": \"#fffffa\" }\r\n ]\r\n },{\r\n \"featureType\": \"water\",\r\n \"stylers\": [\r\n { \"lightness\": 50 }\r\n ]\r\n },{\r\n \"featureType\": \"road\",\r\n \"elementType\": \"labels\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"transit\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"administrative\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"lightness\": 40 }\r\n ]\r\n }\r\n]","views":1868,"createdBy":{"name":"Tony","url":"http://snazzymaps.com"},"createdOn":"2014-02-20T03:10:48.637"},{"id":82,"name":"Grass is greener. Water is bluer.","description":"Bright green parks and bright blue water","url":"http://snazzymaps.com/style/82/grass-is-greener-water-is-bluer","json":"[ { \"stylers\": [ { \"saturation\": -100 } ] },{ \"featureType\": \"water\", \"elementType\": \"geometry.fill\", \"stylers\": [ { \"color\": \"#0099dd\" } ] },{ \"elementType\": \"labels\", \"stylers\": [ { \"visibility\": \"off\" } ] },{ \"featureType\": \"poi.park\", \"elementType\": \"geometry.fill\", \"stylers\": [ { \"color\": \"#aadd55\" } ] },{ \"featureType\": \"road.highway\", \"elementType\": \"labels\", \"stylers\": [ { \"visibility\": \"on\" } ] },{ \"featureType\": \"road.arterial\", \"elementType\": \"labels.text\", \"stylers\": [ { \"visibility\": \"on\" } ] },{ \"featureType\": \"road.local\", \"elementType\": \"labels.text\", \"stylers\": [ { \"visibility\": \"on\" } ] },{ } ]","views":1853,"createdBy":{"name":"vm","url":"http://snazzymaps.com"},"createdOn":"2014-04-16T02:58:17.053"},{"id":75,"name":"Shade of green","description":"A subtle twist on the default map style with roads and parks highlighted green.","url":"http://snazzymaps.com/style/75/shade-of-green","json":"[{featureType:\"water\",elementType:\"all\",stylers:[{hue:\"#76aee3\"},{saturation:38},{lightness:-11},{visibility:\"on\"}]},{featureType:\"road.highway\",elementType:\"all\",stylers:[{hue:\"#8dc749\"},{saturation:-47},{lightness:-17},{visibility:\"on\"}]},{featureType:\"poi.park\",elementType:\"all\",stylers:[{hue:\"#c6e3a4\"},{saturation:17},{lightness:-2},{visibility:\"on\"}]},{featureType:\"road.arterial\",elementType:\"all\",stylers:[{hue:\"#cccccc\"},{saturation:-100},{lightness:13},{visibility:\"on\"}]},{featureType:\"administrative.land_parcel\",elementType:\"all\",stylers:[{hue:\"#5f5855\"},{saturation:6},{lightness:-31},{visibility:\"on\"}]},{featureType:\"road.local\",elementType:\"all\",stylers:[{hue:\"#ffffff\"},{saturation:-100},{lightness:100},{visibility:\"simplified\"}]},{featureType:\"water\",elementType:\"all\",stylers:[]}]","views":1843,"createdBy":{"name":"Kevin Lofthouse","url":"http://www.lofthou.se"},"createdOn":"2014-02-28T15:14:02.35"},{"id":26,"name":"Vintage Blue","description":"A cool style that hides all those pesky roads in favour of a simple contrasting blue/grey/yellow color scheme.","url":"http://snazzymaps.com/style/26/vintage-blue","json":"[\r\n {\r\n \"featureType\": \"road\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"transit\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"administrative.province\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi.park\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"water\",\r\n \"stylers\": [\r\n { \"color\": \"#004b76\" }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"landscape.natural\",\r\n \"stylers\": [\r\n { \"visibility\": \"on\" },\r\n { \"color\": \"#fff6cb\" }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"administrative.country\",\r\n \"elementType\": \"geometry.stroke\",\r\n \"stylers\": [\r\n { \"visibility\": \"on\" },\r\n { \"color\": \"#7f7d7a\" },\r\n { \"lightness\": 10 },\r\n { \"weight\": 1 }\r\n ]\r\n }\r\n]","views":1838,"createdBy":{"name":"onespacemedia","url":"http://www.africauncovered.com"},"createdOn":"2013-11-05T20:32:04.443"},{"id":68,"name":"Aqua","description":"A cool two tone map that looks great when zoomed in.","url":"http://snazzymaps.com/style/68/aqua","json":"[\r\n {\r\n \"featureType\":\"landscape\",\r\n \"stylers\":[\r\n {\r\n \"color\":\"#6c8080\"\r\n },\r\n {\r\n \"visibility\":\"simplified\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\":\"administrative\",\r\n \"elementType\":\"labels.text\",\r\n \"stylers\":[\r\n {\r\n \"visibility\":\"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\":\"road\",\r\n \"stylers\":[\r\n {\r\n \"visibility\":\"simplified\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\":\"poi\",\r\n \"stylers\":[\r\n {\r\n \"visibility\":\"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\":\"road.highway\",\r\n \"elementType\":\"labels\",\r\n \"stylers\":[\r\n {\r\n \"visibility\":\"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\":\"road.highway\",\r\n \"elementType\":\"labels\",\r\n \"stylers\":[\r\n {\r\n \"visibility\":\"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\":\"road\",\r\n \"elementType\":\"labels.icon\",\r\n \"stylers\":[\r\n {\r\n \"visibility\":\"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\":\"transit\",\r\n \"elementType\":\"labels\",\r\n \"stylers\":[\r\n {\r\n \"visibility\":\"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"elementType\":\"labels\",\r\n \"stylers\":[\r\n {\r\n \"visibility\":\"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\":\"road.highway\",\r\n \"stylers\":[\r\n {\r\n \"color\":\"#d98080\"\r\n },\r\n {\r\n \"hue\":\"#eeff00\"\r\n },\r\n {\r\n \"lightness\":100\r\n },\r\n {\r\n \"weight\":1.5\r\n }\r\n ]\r\n }\r\n]","views":1828,"createdBy":{"name":"Anonymous","url":"http://snazzymaps.com"},"createdOn":"2014-02-20T03:19:01.813"},{"id":84,"name":"Pastel Tones","description":"Simple Pastel look and feel","url":"http://snazzymaps.com/style/84/pastel-tones","json":"[\r\n {\r\n \"featureType\": \"landscape\",\r\n \"stylers\": [\r\n { \"saturation\": -100 },\r\n { \"lightness\": 60 }\r\n ]\r\n },{\r\n \"featureType\": \"road.local\",\r\n \"stylers\": [\r\n { \"saturation\": -100 },\r\n { \"lightness\": 40 },\r\n { \"visibility\": \"on\" }\r\n ]\r\n },{\r\n \"featureType\": \"transit\",\r\n \"stylers\": [\r\n { \"saturation\": -100 },\r\n { \"visibility\": \"simplified\" }\r\n ]\r\n },{\r\n \"featureType\": \"administrative.province\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"water\",\r\n \"stylers\": [\r\n { \"visibility\": \"on\" },\r\n { \"lightness\": 30 }\r\n ]\r\n },{\r\n \"featureType\": \"road.highway\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"color\": \"#ef8c25\" },\r\n { \"lightness\": 40 }\r\n ]\r\n },{\r\n \"featureType\": \"road.highway\",\r\n \"elementType\": \"geometry.stroke\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"poi.park\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"color\": \"#b6c54c\" },\r\n { \"lightness\": 40 },\r\n { \"saturation\": -40 }\r\n ]\r\n },{\r\n }\r\n]","views":1818,"createdBy":{"name":"Desmond","url":"http://snazzymaps.com"},"createdOn":"2014-04-29T21:24:53.457"},{"id":102,"name":"Clean Grey","description":"Great and subtle color theme for Fusion Tables.","url":"http://snazzymaps.com/style/102/clean-grey","json":"[\r\n {\r\n \"featureType\": \"administrative\",\r\n \"elementType\": \"labels\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"administrative.country\",\r\n \"elementType\": \"geometry.stroke\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"administrative.province\",\r\n \"elementType\": \"geometry.stroke\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"landscape\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"on\"\r\n },\r\n {\r\n \"color\": \"#e3e3e3\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"landscape.natural\",\r\n \"elementType\": \"labels\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi\",\r\n \"elementType\": \"all\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road\",\r\n \"elementType\": \"all\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#cccccc\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road\",\r\n \"elementType\": \"labels\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"transit\",\r\n \"elementType\": \"labels.icon\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"transit.line\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"transit.line\",\r\n \"elementType\": \"labels.text\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"transit.station.airport\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"transit.station.airport\",\r\n \"elementType\": \"labels\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"water\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#FFFFFF\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"water\",\r\n \"elementType\": \"labels\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n }\r\n]","views":1816,"createdBy":{"name":"Mikkel B. Jensen","url":"http://www.mx.dk"},"createdOn":"2014-05-27T15:07:03.9"},{"id":41,"name":"Hints of Gold","description":"Shades of grey with subtle hints of golden tags.","url":"http://snazzymaps.com/style/41/hints-of-gold","json":"[\r\n\t\t\t{\r\n\t\t\t\tfeatureType: 'water',\r\n\t\t\t\telementType: 'all',\r\n\t\t\t\tstylers: [\r\n\t\t\t\t\t{ hue: '#252525' },\r\n\t\t\t\t\t{ saturation: -100 },\r\n\t\t\t\t\t{ lightness: -81 },\r\n\t\t\t\t\t{ visibility: 'on' }\r\n\t\t\t\t]\r\n\t\t\t},{\r\n\t\t\t\tfeatureType: 'landscape',\r\n\t\t\t\telementType: 'all',\r\n\t\t\t\tstylers: [\r\n\t\t\t\t\t{ hue: '#666666' },\r\n\t\t\t\t\t{ saturation: -100 },\r\n\t\t\t\t\t{ lightness: -55 },\r\n\t\t\t\t\t{ visibility: 'on' }\r\n\t\t\t\t]\r\n\t\t\t},{\r\n\t\t\t\tfeatureType: 'poi',\r\n\t\t\t\telementType: 'geometry',\r\n\t\t\t\tstylers: [\r\n\t\t\t\t\t{ hue: '#555555' },\r\n\t\t\t\t\t{ saturation: -100 },\r\n\t\t\t\t\t{ lightness: -57 },\r\n\t\t\t\t\t{ visibility: 'on' }\r\n\t\t\t\t]\r\n\t\t\t},{\r\n\t\t\t\tfeatureType: 'road',\r\n\t\t\t\telementType: 'all',\r\n\t\t\t\tstylers: [\r\n\t\t\t\t\t{ hue: '#777777' },\r\n\t\t\t\t\t{ saturation: -100 },\r\n\t\t\t\t\t{ lightness: -6 },\r\n\t\t\t\t\t{ visibility: 'on' }\r\n\t\t\t\t]\r\n\t\t\t},{\r\n\t\t\t\tfeatureType: 'administrative',\r\n\t\t\t\telementType: 'all',\r\n\t\t\t\tstylers: [\r\n\t\t\t\t\t{ hue: '#cc9900' },\r\n\t\t\t\t\t{ saturation: 100 },\r\n\t\t\t\t\t{ lightness: -22 },\r\n\t\t\t\t\t{ visibility: 'on' }\r\n\t\t\t\t]\r\n\t\t\t},{\r\n\t\t\t\tfeatureType: 'transit',\r\n\t\t\t\telementType: 'all',\r\n\t\t\t\tstylers: [\r\n\t\t\t\t\t{ hue: '#444444' },\r\n\t\t\t\t\t{ saturation: 0 },\r\n\t\t\t\t\t{ lightness: -64 },\r\n\t\t\t\t\t{ visibility: 'off' }\r\n\t\t\t\t]\r\n\t\t\t},{\r\n\t\t\t\tfeatureType: 'poi',\r\n\t\t\t\telementType: 'labels',\r\n\t\t\t\tstylers: [\r\n\t\t\t\t\t{ hue: '#555555' },\r\n\t\t\t\t\t{ saturation: -100 },\r\n\t\t\t\t\t{ lightness: -57 },\r\n\t\t\t\t\t{ visibility: 'off' }\r\n\t\t\t\t]\r\n\t\t\t}\r\n\t\t]","views":1816,"createdBy":{"name":"Johnathan Miller","url":"http://johnathanmiller.com"},"createdOn":"2013-11-20T17:56:28.173"},{"id":9,"name":"Chilled","description":"Example provided by Google showcasing their style API.","url":"http://snazzymaps.com/style/9/chilled","json":"[{ featureType: 'road', elementType: 'geometry', stylers: [{'visibility': 'simplified'}]}, { featureType: 'road.arterial', stylers: [ {hue: 149}, {saturation: -78}, {lightness: 0} ]}, { featureType: 'road.highway', stylers: [{hue: -31},{saturation: -40},{lightness: 2.8} ]}, { featureType: 'poi', elementType: 'label', stylers: [{'visibility': 'off'}]}, { featureType: 'landscape', stylers: [{hue: 163},{saturation: -26},{lightness: -1.1} ]}, { featureType: 'transit', stylers: [{'visibility': 'off'}]}, { featureType: 'water',stylers: [{hue: 3},{saturation: -24.24},{lightness: -38.57} ]} ]","views":1780,"createdBy":{"name":"Google","url":"http://maps-api-tt.appspot.com/apilite/styled/styled.html"},"createdOn":"2013-10-24T22:54:44.31"},{"id":24,"name":"Hot Pink","description":"Could a Google Map theme be naughty?!\r\n\r\nGreat for website with dark themes.","url":"http://snazzymaps.com/style/24/hot-pink","json":"[\r\n\t{\r\n\t\t\"stylers\": [\r\n\t\t\t{ \"hue\": \"#ff61a6\" },\r\n\t\t\t{ \"visibility\": \"on\" },\r\n\t\t\t{ \"invert_lightness\": true },\r\n\t\t\t{ \"saturation\": 40 },\r\n\t\t\t{ \"lightness\": 10 }\r\n\t\t]\r\n\t}\r\n]","views":1778,"createdBy":{"name":"Gregory Pratt","url":"https://www.goingoutapp.co.uk"},"createdOn":"2013-11-05T16:07:42.847"},{"id":48,"name":"Hard edges","description":"Hard Black and White palette, with a hint of color on the smaller scales.","url":"http://snazzymaps.com/style/48/hard-edges","json":"[\r\n {\r\n \"featureType\": \"landscape.natural\",\r\n \"stylers\": [\r\n { \"saturation\": -100 },\r\n { \"lightness\": 100 }\r\n ]\r\n },{\r\n \"featureType\": \"water\",\r\n \"stylers\": [\r\n { \"saturation\": -100 },\r\n { \"lightness\": -86 }\r\n ]\r\n },{\r\n \"elementType\": \"labels.text.stroke\",\r\n \"stylers\": [\r\n { \"saturation\": -100 },\r\n { \"lightness\": 100 }\r\n ]\r\n },{\r\n \"featureType\": \"road\",\r\n \"elementType\": \"geometry.stroke\",\r\n \"stylers\": [\r\n { \"saturation\": -100 },\r\n { \"lightness\": -75 }\r\n ]\r\n },{\r\n \"featureType\": \"road\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"saturation\": -100 },\r\n { \"lightness\": 97 }\r\n ]\r\n },{\r\n \"featureType\": \"poi.park\",\r\n \"stylers\": [\r\n { \"saturation\": -100 },\r\n { \"lightness\": -100 }\r\n ]\r\n },{\r\n \"featureType\": \"poi.park\",\r\n \"elementType\": \"labels.text.fill\",\r\n \"stylers\": [\r\n { \"saturation\": -100 },\r\n { \"lightness\": 100 }\r\n ]\r\n },{\r\n \"featureType\": \"road\",\r\n \"elementType\": \"labels\",\r\n \"stylers\": [\r\n { \"visibility\": \"on\" }\r\n ]\r\n },{\r\n \"featureType\": \"landscape.man_made\",\r\n \"stylers\": [\r\n { \"saturation\": -100 },\r\n { \"lightness\": -68 }\r\n ]\r\n },{\r\n \"featureType\": \"administrative\",\r\n \"elementType\": \"labels.text.fill\",\r\n \"stylers\": [\r\n { \"saturation\": -100 },\r\n { \"lightness\": 100 }\r\n ]\r\n },{\r\n \"featureType\": \"administrative\",\r\n \"elementType\": \"labels.text.stroke\",\r\n \"stylers\": [\r\n { \"saturation\": -100 },\r\n { \"lightness\": -100 }\r\n ]\r\n },{\r\n \"featureType\": \"poi\",\r\n \"stylers\": [\r\n { \"saturation\": -100 },\r\n { \"lightness\": 91 }\r\n ]\r\n },{\r\n \"featureType\": \"poi\",\r\n \"elementType\": \"labels.text.fill\",\r\n \"stylers\": [\r\n { \"saturation\": -100 },\r\n { \"lightness\": -100 }\r\n ]\r\n },{\r\n \"featureType\": \"transit.station\",\r\n \"stylers\": [\r\n { \"saturation\": -100 },\r\n { \"lightness\": -22 }\r\n ]\r\n },{\r\n \"featureType\": \"landscape.man_made\",\r\n \"elementType\": \"geometry.stroke\",\r\n \"stylers\": [\r\n { \"hue\": \"#ff004c\" },\r\n { \"saturation\": -100 },\r\n { \"lightness\": 44 }\r\n ]\r\n },{\r\n \"elementType\": \"labels.text.fill\",\r\n \"stylers\": [\r\n { \"saturation\": 1 },\r\n { \"lightness\": -100 }\r\n ]\r\n },{\r\n \"elementType\": \"labels.text.stroke\",\r\n \"stylers\": [\r\n { \"saturation\": -100 },\r\n { \"lightness\": 100 }\r\n ]\r\n },{\r\n \"featureType\": \"administrative.locality\",\r\n \"elementType\": \"labels\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"water\",\r\n \"elementType\": \"labels\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },\r\n{\r\n \"featureType\": \"administrative.locality\",\r\n \"elementType\": \"labels\",\r\n \"stylers\": [\r\n { \"visibility\": \"on\" }\r\n ]\r\n },{\r\n \"featureType\": \"water\",\r\n \"elementType\": \"labels\",\r\n \"stylers\": [\r\n { \"visibility\": \"on\" }\r\n ]\r\n }\r\n]","views":1697,"createdBy":{"name":"Marco Buetikfoer","url":"http://www.postcom.name"},"createdOn":"2013-12-09T22:08:35.93"},{"id":4,"name":"Tripitty","description":"A two-tone map with no labels. Best viewed when zoomed out to display continents and oceans.","url":"http://snazzymaps.com/style/4/tripitty","json":"[ { featureType: 'water', elementType: 'all', stylers: [ { color: '#193a70' }, { visibility: 'on' } ] }, { featureType: 'road', stylers: [ { 'visibility': 'off' } ] }, { featureType: 'transit', stylers: [ { 'visibility': 'off' } ] },{ featureType: 'administrative', stylers: [ { 'visibility': 'off' } ] }, { featureType: 'landscape', elementType: 'all', stylers: [ { 'color': '#2c5ca5' } ] },{ featureType: 'poi', stylers: [ { 'color': '#2c5ca5' } ] }, { elementType: 'labels', stylers: [ { 'visibility': 'off' } ] } ]","views":1693,"createdBy":{"name":"Adam Krogh","url":"http://tripitty.com"},"createdOn":"2013-10-24T22:54:38.407"},{"id":50,"name":"The Endless Atlas","description":"Minimal style used in The Endless Atlas Project at www.endlessatlas.com. White sea, all the shades of gray, no state name and no boundaries. \r\nCome on, we are all humans!","url":"http://snazzymaps.com/style/50/the-endless-atlas","json":"[\r\n\t{\r\n \t\tfeatureType: 'all',\r\n\t\telementType: 'labels.text.stroke',\r\n \t\tstylers: [\r\n \t\t\t{ hue: '#000000' },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: 100 },\r\n\t\t\t{ visibility: 'off' }\r\n \t\t]\r\n \t},{\r\n \t\tfeatureType: 'all',\r\n\t\telementType: 'labels.icon',\r\n \t\tstylers: [\r\n \t\t\t{ hue: '#000000' },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: 100 },\r\n\t\t\t{ visibility: 'off' }\r\n \t \t]\r\n \t},{\r\n\t\tfeatureType: 'water',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#000000' },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: 100 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'landscape',\r\n\t\telementType: 'geometry',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#D1D3D4' },\r\n\t\t\t{ saturation: -88 },\r\n\t\t\t{ lightness: -7 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'landscape',\r\n\t\telementType: 'labels',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#939598' },\r\n\t\t\t{ saturation: -91 },\r\n\t\t\t{ lightness: -34 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'road',\r\n\t\telementType: 'geometry',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#414042' },\r\n\t\t\t{ saturation: -98 },\r\n\t\t\t{ lightness: -60 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'poi',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#E3EBE5' },\r\n\t\t\t{ saturation: -61 },\r\n\t\t\t{ lightness: 57 },\r\n\t\t\t{ visibility: 'off' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'poi.park',\r\n\t\telementType: 'geometry',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#E3EBE5' },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: 57 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n \tfeatureType: \"administrative\",\r\n \telementType: \"geometry.fill\",\r\n \tstylers: [\r\n \t{ visibility: \"off\" }\r\n \t]\r\n \t},{\r\n\t\tfeatureType: 'administrative.country',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#E3EBE5' },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: 81 },\r\n\t\t\t{ visibility: 'off' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'administrative.province',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#E3EBE5' },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: 81 },\r\n\t\t\t{ visibility: 'off' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'administrative.locality',\r\n\t\telementType: 'geometry',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#FFFFFF' },\r\n\t\t\t{ saturation: 0 },\r\n\t\t\t{ lightness: 100 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'administrative.locality',\r\n\t\telementType: 'labels',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#939598' },\r\n\t\t\t{ saturation: 2 },\r\n\t\t\t{ lightness: 59 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'administrative.neighborhood',\r\n\t\telementType: 'labels',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#939598' },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: 16 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'administrative.neighborhood',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#939598' },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: 16 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'administrative.land_parcel',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#939598' },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: 16 },\r\n\t\t\t{ visibility: 'simplified' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'road.highway',\r\n\t\telementType: 'geometry',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#939598' },\r\n\t\t\t{ saturation: -98 },\r\n\t\t\t{ lightness: -8 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'road.highway',\r\n\t\telementType: 'labels',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#FFFFFF' },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: 100 },\r\n\t\t\t{ visibility: 'off' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'road.arterial',\r\n\t\telementType: 'geometry',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#6D6E71' },\r\n\t\t\t{ saturation: -98 },\r\n\t\t\t{ lightness: -43 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'road.arterial',\r\n\t\telementType: 'labels',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#FFFFFF' },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: 100 },\r\n\t\t\t{ visibility: 'off' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'road.local',\r\n\t\telementType: 'geometry',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#000000' },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: -100 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'road.local',\r\n\t\telementType: 'labels',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#FFFFFF' },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: 100 },\r\n\t\t\t{ visibility: 'off' }\r\n\t\t]\r\n\t}\r\n]","views":1458,"createdBy":{"name":"Antonello Colaps","url":"http://www.dopolavoro.org"},"createdOn":"2014-01-06T19:35:01.703"},{"id":91,"name":"Muted Monotone","description":"Light monochromatic theme with not too many labels. White roads, dark transit lines and water.","url":"http://snazzymaps.com/style/91/muted-monotone","json":"[\r\n\t {\r\n\t \"stylers\": [\r\n\t { \"visibility\": \"on\" },\r\n\t { \"saturation\": -100 },\r\n\t { \"gamma\": 0.54 }\r\n\t ]\r\n\t },{\r\n\t \"featureType\": \"road\",\r\n\t \"elementType\": \"labels.icon\",\r\n\t \"stylers\": [\r\n\t { \"visibility\": \"off\" }\r\n\t ]\r\n\t },{\r\n\t \"featureType\": \"water\",\r\n\t \"stylers\": [\r\n\t { \"color\": \"#4d4946\" }\r\n\t ]\r\n\t },{\r\n\t \"featureType\": \"poi\",\r\n\t \"elementType\": \"labels.icon\",\r\n\t \"stylers\": [\r\n\t { \"visibility\": \"off\" }\r\n\t ]\r\n\t },{\r\n\t \"featureType\": \"poi\",\r\n\t \"elementType\": \"labels.text\",\r\n\t \"stylers\": [\r\n\t { \"visibility\": \"simplified\" }\r\n\t ]\r\n\t },{\r\n\t \"featureType\": \"road\",\r\n\t \"elementType\": \"geometry.fill\",\r\n\t \"stylers\": [\r\n\t { \"color\": \"#ffffff\" }\r\n\t ]\r\n\t },{\r\n\t \"featureType\": \"road.local\",\r\n\t \"elementType\": \"labels.text\",\r\n\t \"stylers\": [\r\n\t { \"visibility\": \"simplified\" }\r\n\t ]\r\n\t },{\r\n\t \"featureType\": \"water\",\r\n\t \"elementType\": \"labels.text.fill\",\r\n\t \"stylers\": [\r\n\t { \"color\": \"#ffffff\" }\r\n\t ]\r\n\t },{\r\n\t \"featureType\": \"transit.line\",\r\n\t \"elementType\": \"geometry\",\r\n\t \"stylers\": [\r\n\t { \"gamma\": 0.48 }\r\n\t ]\r\n\t },{\r\n\t \"featureType\": \"transit.station\",\r\n\t \"elementType\": \"labels.icon\",\r\n\t \"stylers\": [\r\n\t { \"visibility\": \"off\" }\r\n\t ]\r\n\t },{\r\n\t \"featureType\": \"road\",\r\n\t \"elementType\": \"geometry.stroke\",\r\n\t \"stylers\": [\r\n\t { \"gamma\": 7.18 }\r\n\t ]\r\n\t }\r\n\t]","views":1448,"createdBy":{"name":"caratage","url":"http://caratage.com"},"createdOn":"2014-04-29T21:34:20.627"},{"id":70,"name":"Unsaturated Browns","description":"A subtle, low saturation map, using a light brown as the base colour with pleasant blues and greens as highlights.","url":"http://snazzymaps.com/style/70/unsaturated-browns","json":"[\r\n{\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"hue\": \"#ff4400\" },\r\n { \"saturation\": -68 },\r\n { \"lightness\": -4 },\r\n { \"gamma\": 0.72 }\r\n ]\r\n },{\r\n \"featureType\": \"road\",\r\n \"elementType\": \"labels.icon\" },{\r\n \"featureType\": \"landscape.man_made\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"hue\": \"#0077ff\" },\r\n { \"gamma\": 3.1 }\r\n ]\r\n },{\r\n \"featureType\": \"water\",\r\n \"stylers\": [\r\n { \"hue\": \"#00ccff\" },\r\n { \"gamma\": 0.44 },\r\n { \"saturation\": -33 }\r\n ]\r\n },{\r\n \"featureType\": \"poi.park\",\r\n \"stylers\": [\r\n { \"hue\": \"#44ff00\" },\r\n { \"saturation\": -23 }\r\n ]\r\n },{\r\n \"featureType\": \"water\",\r\n \"elementType\": \"labels.text.fill\",\r\n \"stylers\": [\r\n { \"hue\": \"#007fff\" },\r\n { \"gamma\": 0.77 },\r\n { \"saturation\": 65 },\r\n { \"lightness\": 99 }\r\n ]\r\n },{\r\n \"featureType\": \"water\",\r\n \"elementType\": \"labels.text.stroke\",\r\n \"stylers\": [\r\n { \"gamma\": 0.11 },\r\n { \"weight\": 5.6 },\r\n { \"saturation\": 99 },\r\n { \"hue\": \"#0091ff\" },\r\n { \"lightness\": -86 }\r\n ]\r\n },{\r\n \"featureType\": \"transit.line\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"lightness\": -48 },\r\n { \"hue\": \"#ff5e00\" },\r\n { \"gamma\": 1.2 },\r\n { \"saturation\": -23 }\r\n ]\r\n },{\r\n \"featureType\": \"transit\",\r\n \"elementType\": \"labels.text.stroke\",\r\n \"stylers\": [\r\n { \"saturation\": -64 },\r\n { \"hue\": \"#ff9100\" },\r\n { \"lightness\": 16 },\r\n { \"gamma\": 0.47 },\r\n { \"weight\": 2.7 }\r\n ]\r\n }\r\n]","views":1447,"createdBy":{"name":"Simon Goellner","url":"http://simey.me"},"createdOn":"2014-02-20T03:23:32.237"},{"id":34,"name":"Neon World","description":"A map with all elements at maxed out saturation. Neon and bright features are best visible when zoomed in.","url":"http://snazzymaps.com/style/34/neon-world","json":"[\r\n {\r\n \"stylers\": [\r\n { \"saturation\": 100 },\r\n { \"gamma\": 0.6 }\r\n ]\r\n }\r\n]","views":1426,"createdBy":{"name":"Adam Krogh","url":"http://atmistlabs.com"},"createdOn":"2013-11-09T18:03:06.017"},{"id":59,"name":"Light Green","description":"A light map with a green hue simplified by removing all roads, transit, and labels.","url":"http://snazzymaps.com/style/59/light-green","json":"[\r\n {\"stylers\":[\r\n { \"hue\":\"#baf4c4\" },\r\n { \"saturation\":10 }\r\n ]},\r\n {\r\n \"featureType\":\"water\",\r\n \"stylers\":[{\r\n \"color\":\"#effefd\"\r\n }]\r\n },\r\n {\r\n \"featureType\":\"all\",\r\n \"elementType\":\"labels\",\r\n \"stylers\":[{\r\n \"visibility\":\"off\"\r\n }]\r\n },\r\n {\r\n featureType:\"administrative\",\r\n elementType:\"labels\",\r\n stylers:[\r\n {visibility:\"on\"}\r\n ]\r\n },\r\n {\r\n featureType:\"road\",\r\n elementType:\"all\",\r\n stylers:[\r\n {visibility:\"off\"}\r\n ]\r\n },\r\n {\r\n featureType:\"transit\",\r\n elementType:\"all\",\r\n stylers:[\r\n {visibility:\"off\"}\r\n ]\r\n }\r\n \r\n ]","views":1397,"createdBy":{"name":"naoyashiga","url":"https://github.com/naoyashiga"},"createdOn":"2014-01-28T15:15:27.887"},{"id":11,"name":"Blue","description":"Example provided by Google showcasing their style API.","url":"http://snazzymaps.com/style/11/blue","json":"[{ featureType: 'all', stylers: [{hue: '#0000b0'},{invert_lightness: 'true'},{saturation: -30} ]} ]","views":1387,"createdBy":{"name":"Google","url":"http://maps-api-tt.appspot.com/apilite/styled/styled.html"},"createdOn":"2013-10-24T22:54:46.133"},{"id":10,"name":"Mixed","description":"Example provided by Google showcasing their style API.","url":"http://snazzymaps.com/style/10/mixed","json":"[{ featureType: 'landscape', stylers: [{hue: '#00dd00'}]}, { featureType: 'road', stylers: [{hue: '#dd0000'}]}, { featureType: 'water', stylers: [{hue: '#000040'}]}, { featureType: 'poi.park', stylers: [{visibility: 'off'}]}, { featureType: 'road.arterial', stylers: [{hue: '#ffff00'}]}, { featureType: 'road.local', stylers: [{visibility: 'off'}]} ]","views":1338,"createdBy":{"name":"Google","url":"http://maps-api-tt.appspot.com/apilite/styled/styled.html"},"createdOn":"2013-10-24T22:54:45.353"},{"id":90,"name":"Light Blue Water","description":"Light blue and white style.","url":"http://snazzymaps.com/style/90/light-blue-water","json":"[\r\n\t{\r\n\t\tfeatureType: 'water',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#71d6ff' },\r\n\t\t\t{ saturation: 100 },\r\n\t\t\t{ lightness: -5 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'poi',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#ffffff' },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: 100 },\r\n\t\t\t{ visibility: 'off' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'transit',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#ffffff' },\r\n\t\t\t{ saturation: 0 },\r\n\t\t\t{ lightness: 100 },\r\n\t\t\t{ visibility: 'off' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'road.highway',\r\n\t\telementType: 'geometry',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#deecec' },\r\n\t\t\t{ saturation: -73 },\r\n\t\t\t{ lightness: 72 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'road.highway',\r\n\t\telementType: 'labels',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#bababa' },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: 25 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'landscape',\r\n\t\telementType: 'geometry',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#e3e3e3' },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: 0 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'road',\r\n\t\telementType: 'geometry',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#ffffff' },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: 100 },\r\n\t\t\t{ visibility: 'simplified' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'administrative',\r\n\t\telementType: 'labels',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#59cfff' },\r\n\t\t\t{ saturation: 100 },\r\n\t\t\t{ lightness: 34 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t}\r\n]","views":1308,"createdBy":{"name":"Helen","url":"http://snazzymaps.com"},"createdOn":"2014-04-29T21:33:17.57"},{"id":73,"name":"A Dark World","description":"A dark with no label map style.","url":"http://snazzymaps.com/style/73/a-dark-world","json":"[\r\n {\r\n \"stylers\": [\r\n {\"visibility\": \"simplified\"}\r\n ]\r\n }, {\r\n \"stylers\": [\r\n {\"color\": \"#131314\"}\r\n ]\r\n }, {\r\n \"featureType\": \"water\",\r\n \"stylers\": [\r\n {\"color\": \"#131313\"},\r\n {\"lightness\": 7}\r\n ]\r\n }, {\r\n \"elementType\": \"labels.text.fill\",\r\n \"stylers\": [\r\n {\"visibility\": \"on\"},\r\n {\"lightness\": 25}\r\n ]\r\n }\r\n ]","views":1258,"createdBy":{"name":"Bim","url":"http://snazzymaps.com"},"createdOn":"2014-02-28T15:10:39.477"},{"id":76,"name":"HashtagNineNineNine","description":"#999 style.","url":"http://snazzymaps.com/style/76/hashtagnineninenine","json":"[\r\n\t{\r\n\t\tfeatureType: 'water',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#bbbbbb' },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: -4 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'landscape',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#999999' },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: -33 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'road',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#999999' },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: -6 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'poi',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#aaaaaa' },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: -15 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t}\r\n]","views":1240,"createdBy":{"name":"kukac7","url":"http://kukac7.hu"},"createdOn":"2014-02-28T15:14:56.743"},{"id":45,"name":"Candy Colours ","description":"A bright map with prominent pink on a light background.","url":"http://snazzymaps.com/style/45/candy-colours","json":"[\r\n\t{\r\n\t\t\"featureType\": \"landscape\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#FFE100\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": 34.48275862068968\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": -1.490196078431353\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t},\r\n\t{\r\n\t\t\"featureType\": \"road.highway\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#FF009A\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": -2.970297029703005\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": -17.815686274509815\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t},\r\n\t{\r\n\t\t\"featureType\": \"road.arterial\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#FFE100\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": 8.600000000000009\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": -4.400000000000006\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t},\r\n\t{\r\n\t\t\"featureType\": \"road.local\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#00C3FF\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": 29.31034482758622\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": -38.980392156862735\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t},\r\n\t{\r\n\t\t\"featureType\": \"water\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#0078FF\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": 0\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": 0\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t},\r\n\t{\r\n\t\t\"featureType\": \"poi\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#00FF19\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": -30.526315789473685\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": -22.509803921568633\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t}\r\n]","views":1218,"createdBy":{"name":"Daniela","url":"http://popovadesign.com"},"createdOn":"2013-12-02T15:35:56.237"},{"id":23,"name":"Bates Green","description":"A nice, simple green version of the map.","url":"http://snazzymaps.com/style/23/bates-green","json":" [{\r\n\t\tfeatureType: 'water',\r\n\t\telementType: 'all',\r\n\t\tstylers: [{\r\n\t\t\thue: '#1CB2BD'\r\n\t\t}, {\r\n\t\t\tsaturation: 53\r\n\t\t}, {\r\n\t\t\tlightness: -44\r\n\t\t}, {\r\n\t\t\tvisibility: 'on'\r\n\t\t}]\r\n\t}, {\r\n\t\tfeatureType: \"road\",\r\n\t\telementType: \"all\",\r\n\t\tstylers: [{\r\n\t\t\thue: \"#1CB2BD\"\r\n\t\t}, {\r\n\t\t\tsaturation: 40\r\n\t\t}]\r\n\t}, {\r\n\t\tfeatureType: 'landscape',\r\n\t\telementType: 'all',\r\n\t\tstylers: [{\r\n\t\t\thue: '#BBDC00'\r\n\t\t}, {\r\n\t\t\tsaturation: 80\r\n\t\t}, {\r\n\t\t\tlightness: -20\r\n\t\t}, {\r\n\t\t\tvisibility: 'on'\r\n\t\t}]\r\n\t}, {\r\n\t\tfeatureType: 'road.highway',\r\n\t\telementType: 'all',\r\n\t\tstylers: [{\r\n\t\t\tvisibility: 'on'\r\n\t\t}]\r\n\t}]","views":1100,"createdBy":{"name":"Ozgur Coruhlu","url":"http://www.batescreative.com"},"createdOn":"2013-11-05T16:07:07.43"},{"id":64,"name":"Old Dry Mud","description":"Orange as a way of manifesting tranquility and to remind of the desert past of parts of this world. Water is depicted pale, reflecting a sky coated with a thin sheet of autumn clouds. ","url":"http://snazzymaps.com/style/64/old-dry-mud","json":"[\r\n\t{\r\n\t\t\"featureType\": \"landscape\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#FFAD00\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": 50.2\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": -34.8\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t},\r\n\t{\r\n\t\t\"featureType\": \"road.highway\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#FFAD00\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": -19.8\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": -1.8\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t},\r\n\t{\r\n\t\t\"featureType\": \"road.arterial\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#FFAD00\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": 72.4\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": -32.6\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t},\r\n\t{\r\n\t\t\"featureType\": \"road.local\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#FFAD00\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": 74.4\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": -18\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t},\r\n\t{\r\n\t\t\"featureType\": \"water\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#00FFA6\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": -63.2\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": 38\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t},\r\n\t{\r\n\t\t\"featureType\": \"poi\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#FFC300\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": 54.2\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": -14.4\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t}\r\n]","views":1072,"createdBy":{"name":"Asafaga","url":"http://asafaga.com"},"createdOn":"2014-02-07T15:21:06.483"},{"id":51,"name":"Roadtrip At Night","description":"A dark map with bright white roads and labels.","url":"http://snazzymaps.com/style/51/roadtrip-at-night","json":"\r\n [\r\n {\r\n \"stylers\": [\r\n {\r\n \"hue\": \"#ff1a00\"\r\n },\r\n {\r\n \"invert_lightness\": true\r\n },\r\n {\r\n \"saturation\": -100\r\n },\r\n {\r\n \"lightness\": 33\r\n },\r\n {\r\n \"gamma\": 0.5\r\n }\r\n ]\r\n },{\r\n \"featureType\": \"water\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#2D333C\"\r\n }\r\n ]\r\n },{\r\n \"featureType\": \"road\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#eeeeee\"\r\n },\r\n\t {\r\n\t\t\"visibility\": \"simplified\"\r\n\t }\r\n ]\r\n },{\r\n \"featureType\": \"road\",\r\n \"elementType\": \"labels.text.stroke\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"administrative\",\r\n \"elementType\": \"labels.text.stroke\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#ffffff\"\r\n },\r\n {\r\n \"weight\": 3\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"administrative\",\r\n \"elementType\": \"labels.text.fill\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#2D333C\"\r\n }\r\n ]\r\n }\r\n ]\r\n\r\n","views":1047,"createdBy":{"name":"Veit Stumpf","url":"http://www.physiotherapie-stumpf.de/"},"createdOn":"2014-01-06T19:35:58.207"},{"id":72,"name":"Transport for London","description":null,"url":"http://snazzymaps.com/style/72/transport-for-london","json":"[ { \"elementType\": \"labels.text\", \"stylers\": [ { \"visibility\": \"off\" } ] },{ \"elementType\": \"labels.icon\", \"stylers\": [ { \"visibility\": \"off\" } ] },{ \"elementType\": \"geometry.stroke\", \"stylers\": [ { \"visibility\": \"off\" } ] },{ \"featureType\": \"water\", \"elementType\": \"geometry.fill\", \"stylers\": [ { \"color\": \"#0099cc\" } ] },{ \"featureType\": \"road\", \"elementType\": \"geometry.fill\", \"stylers\": [ { \"color\": \"#00314e\" } ] },{ \"featureType\": \"transit.line\", \"elementType\": \"geometry.fill\", \"stylers\": [ { \"visibility\": \"on\" }, { \"color\": \"#f0f0f0\" } ] },{ \"featureType\": \"landscape.man_made\", \"stylers\": [ { \"color\": \"#adbac9\" } ] },{ \"featureType\": \"landscape.natural\", \"stylers\": [ { \"color\": \"#adb866\" } ] },{ \"featureType\": \"poi\", \"stylers\": [ { \"color\": \"#f7c742\" } ] },{ \"featureType\": \"poi.park\", \"stylers\": [ { \"color\": \"#adb866\" } ] },{ \"featureType\": \"transit.station\", \"elementType\": \"geometry.fill\", \"stylers\": [ { \"color\": \"#ff8dd3\" } ] },{ \"featureType\": \"transit.station\", \"stylers\": [ { \"color\": \"#ff8dd3\" } ] },{ \"featureType\": \"transit.line\", \"elementType\": \"geometry.fill\", \"stylers\": [ { \"visibility\": \"on\" }, { \"color\": \"#808080\" } ] },{ } ]","views":1025,"createdBy":{"name":"Anonymous","url":"http://snazzymaps.com"},"createdOn":"2014-02-28T15:09:39.617"},{"id":95,"name":"Roadie","description":"A map style highlighting roads.","url":"http://snazzymaps.com/style/95/roadie","json":"[\r\n {\r\n \"elementType\": \"labels\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"road\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"visibility\": \"on\" },\r\n { \"color\": \"#000000\" }\r\n ]\r\n },{\r\n \"featureType\": \"landscape\",\r\n \"stylers\": [\r\n { \"color\": \"#ffffff\" },\r\n { \"visibility\": \"on\" }\r\n ]\r\n },{\r\n }\r\n]","views":1011,"createdBy":{"name":"Logan","url":"http://snazzymaps.com"},"createdOn":"2014-05-27T15:02:42.66"},{"id":32,"name":"Deep Green","description":"Bold and vibrant! We have used our brand colors to create a map that is in sync with our website theme. ","url":"http://snazzymaps.com/style/32/deep-green","json":" [\r\n{ \"featureType\": \"administrative\", \"elementType\": \"geometry\", \"stylers\": [ { \"visibility\": \"off\" } ] },{ \"featureType\": \"landscape.man_made\", \"stylers\": [ { \"visibility\": \"simplified\" }, { \"color\": \"#ffe24d\" } ] },{ \"featureType\": \"road\", \"stylers\": [ { \"visibility\": \"simplified\" }, { \"color\": \"#158c28\" } ] },{ \"featureType\": \"landscape.natural\", \"stylers\": [ { \"visibility\": \"simplified\" }, { \"color\": \"#37b34a\" } ] },{ \"featureType\": \"water\", \"stylers\": [ { \"color\": \"#ffe24d\" } ] },{ \"featureType\": \"poi\", \"stylers\": [ { \"visibility\": \"simplified\" }, { \"color\": \"#8bc53f\" } ] },{ \"elementType\": \"labels.text.stroke\", \"stylers\": [ { \"color\": \"#808080\" }, { \"gamma\": 9.91 }, { \"visibility\": \"off\" } ] },{ \"elementType\": \"labels.text.fill\", \"stylers\": [ { \"color\": \"#ffffff\" }, { \"lightness\": 100 }, { \"visibility\": \"on\" } ] },{\"elementType\": \"labels.icon\",\"stylers\": [ { \"visibility\": \"off\" }] }]","views":916,"createdBy":{"name":"Pixel Garage","url":"http://www.pixelgarage.in"},"createdOn":"2013-11-09T17:57:46.48"},{"id":49,"name":"Subtle Green","description":"A simplified style with a touch of green.","url":"http://snazzymaps.com/style/49/subtle-green","json":"[\r\n {\r\n \"stylers\": [\r\n { \"visibility\": \"on\" },\r\n { \"saturation\": -100 }\r\n ]\r\n },{\r\n \"featureType\": \"water\",\r\n \"stylers\": [\r\n { \"visibility\": \"on\" },\r\n { \"saturation\": 100 },\r\n { \"hue\": \"#00ffe6\" }\r\n ]\r\n },{\r\n \"featureType\": \"road\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"saturation\": 100 },\r\n { \"hue\": \"#00ffcc\" }\r\n ]\r\n },{\r\n \"featureType\": \"poi\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"poi.park\",\r\n \"stylers\": [\r\n { \"visibility\": \"on\" }\r\n ]\r\n }\r\n]","views":902,"createdBy":{"name":"jl","url":"http://snazzymaps.com"},"createdOn":"2014-01-06T19:34:41.393"},{"id":56,"name":"Esperanto","description":"A bright theme with a wide array of colours for every single element type.","url":"http://snazzymaps.com/style/56/esperanto","json":" [\r\n {\r\n \"elementType\": \"labels.text.stroke\",\r\n \"stylers\": [\r\n { \"color\": \"#ffffff\" }\r\n ]\r\n },\r\n {\r\n \"elementType\": \"labels.text.fill\",\r\n \"stylers\": [\r\n { \"color\": \"#000000\" }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"water\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"color\": \"#0000ff\" }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road.highway\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"color\": \"#ff0000\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.highway\",\r\n \"elementType\": \"geometry.stroke\",\r\n \"stylers\": [\r\n { \"color\": \"#000100\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.highway.controlled_access\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"color\": \"#ffff00\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.highway.controlled_access\",\r\n \"elementType\": \"geometry.stroke\",\r\n \"stylers\": [\r\n { \"color\": \"#ff0000\" }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road.arterial\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"color\": \"#ffa91a\" }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road.arterial\",\r\n \"elementType\": \"geometry.stroke\",\r\n \"stylers\": [\r\n { \"color\": \"#000000\" }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"landscape.natural\",\r\n \"stylers\": [\r\n { \"saturation\": 36 },\r\n { \"gamma\": 0.55 }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road.local\",\r\n \"elementType\": \"geometry.stroke\",\r\n \"stylers\": [\r\n { \"color\": \"#000000\" }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road.local\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"color\": \"#ffffff\" }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"landscape.man_made\",\r\n \"elementType\": \"geometry.stroke\",\r\n \"stylers\": [\r\n { \"lightness\": -100 },\r\n { \"weight\": 2.1 }\r\n ]\r\n }, \r\n {\r\n \"featureType\": \"landscape.man_made\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"invert_lightness\": true },\r\n { \"hue\": \"#ff0000\" },\r\n { \"gamma\": 3.02 },\r\n { \"lightness\": 20 },\r\n { \"saturation\": 40 }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi.attraction\",\r\n \"stylers\": [\r\n { \"saturation\": 100 },\r\n { \"hue\": \"#ff00ee\" },\r\n { \"lightness\": -13 }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi.government\",\r\n \"stylers\": [\r\n { \"saturation\": 100 },\r\n { \"hue\": \"#eeff00\" },\r\n { \"gamma\": 0.67 },\r\n { \"lightness\": -26 }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi.medical\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"hue\": \"#ff0000\" },\r\n { \"saturation\": 100 },\r\n { \"lightness\": -37 }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi.medical\",\r\n \"elementType\": \"labels.text.fill\",\r\n \"stylers\": [\r\n { \"color\": \"#ff0000\" }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi.school\",\r\n \"stylers\": [\r\n { \"hue\": \"#ff7700\" },\r\n { \"saturation\": 97 },\r\n { \"lightness\": -41 }\r\n ]\r\n }, \r\n {\r\n \"featureType\": \"poi.sports_complex\",\r\n \"stylers\": [\r\n { \"saturation\": 100 },\r\n { \"hue\": \"#00ffb3\" },\r\n { \"lightness\": -71 }\r\n ]\r\n }, \r\n {\r\n \"featureType\": \"poi.park\",\r\n \"stylers\": [\r\n { \"saturation\": 84 },\r\n { \"lightness\": -57 },\r\n { \"hue\": \"#a1ff00\" }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"transit.station.airport\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"gamma\": 0.11 }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"transit.station\",\r\n \"elementType\": \"labels.text.stroke\",\r\n \"stylers\": [\r\n { \"color\": \"#ffc35e\" }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"transit.line\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"lightness\": -100 }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"administrative\",\r\n \"stylers\": [\r\n { \"saturation\": 100 },\r\n { \"gamma\": 0.35 },\r\n { \"lightness\": 20 }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi.business\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"saturation\": -100 },\r\n { \"gamma\": 0.35 }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi.business\",\r\n \"elementType\": \"labels.text.stroke\",\r\n \"stylers\": [\r\n { \"color\": \"#69ffff\" }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi.place_of_worship\",\r\n \"elementType\": \"labels.text.stroke\",\r\n \"stylers\": [\r\n { \"color\": \"#c3ffc3\" }\r\n ]\r\n }\r\n]","views":897,"createdBy":{"name":"mikel","url":"http://snazzymaps.com"},"createdOn":"2014-01-15T22:21:29.35"},{"id":99,"name":"Old Map","description":"Darker retro tone","url":"http://snazzymaps.com/style/99/old-map","json":"[\r\n {\r\n \"featureType\": \"administrative\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"poi\",\r\n \"stylers\": [\r\n { \"visibility\": \"simplified\" }\r\n ]\r\n },{\r\n \"featureType\": \"road\",\r\n \"elementType\": \"labels\",\r\n \"stylers\": [\r\n { \"visibility\": \"simplified\" }\r\n ]\r\n },{\r\n \"featureType\": \"water\",\r\n \"stylers\": [\r\n { \"visibility\": \"simplified\" }\r\n ]\r\n },{\r\n \"featureType\": \"transit\",\r\n \"stylers\": [\r\n { \"visibility\": \"simplified\" }\r\n ]\r\n },{\r\n \"featureType\": \"landscape\",\r\n \"stylers\": [\r\n { \"visibility\": \"simplified\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.highway\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.local\",\r\n \"stylers\": [\r\n { \"visibility\": \"on\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.highway\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"visibility\": \"on\" }\r\n ]\r\n },{\r\n \"featureType\": \"water\",\r\n \"stylers\": [\r\n { \"color\": \"#abbaa4\" }\r\n ]\r\n },{\r\n \"featureType\": \"transit.line\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"color\": \"#3f518c\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.highway\",\r\n \"stylers\": [\r\n { \"color\": \"#ad9b8d\" }\r\n ]\r\n }\r\n]","views":879,"createdBy":{"name":"Nam","url":"http://snazzymaps.com"},"createdOn":"2014-05-27T15:05:31.907"},{"id":57,"name":"Military Flat","description":"A military-grey coloured map, only with borders, cities and bodies of water.\r\nInspired to maps used by the blitzortung.org project.","url":"http://snazzymaps.com/style/57/military-flat","json":"[ { \"featureType\": \"landscape\", \"elementType\": \"geometry.fill\", \"stylers\": [ { \"visibility\": \"on\" }, { \"hue\": \"#00ff88\" }, { \"lightness\": 14 }, { \"color\": \"#667348\" }, { \"saturation\": 4 }, { \"gamma\": 1.14 } ] },{ \"elementType\": \"labels.text.stroke\", \"stylers\": [ { \"visibility\": \"simplified\" } ] },{ \"featureType\": \"administrative.country\", \"elementType\": \"geometry.stroke\", \"stylers\": [ { \"color\": \"#313916\" }, { \"weight\": 0.8 } ] },{ \"featureType\": \"road\", \"stylers\": [ { \"visibility\": \"off\" } ] },{ \"featureType\": \"administrative.locality\", \"elementType\": \"labels.icon\", \"stylers\": [ { \"visibility\": \"simplified\" }, { \"color\": \"#334b1f\" } ] },{ \"featureType\": \"administrative.province\", \"stylers\": [ { \"visibility\": \"off\" } ] },{ \"featureType\": \"poi\", \"stylers\": [ { \"visibility\": \"off\" } ] },{ \"featureType\": \"transit\", \"stylers\": [ { \"visibility\": \"off\" } ] },{ \"featureType\": \"water\", \"stylers\": [ { \"visibility\": \"simplified\" } ] } ]\r\n","views":860,"createdBy":{"name":"Juri","url":"http://snazzymaps.com"},"createdOn":"2014-01-19T17:13:59.64"},{"id":69,"name":"Holiday","description":"A bright and colorful style with great contrast between land, parks, and water.","url":"http://snazzymaps.com/style/69/holiday","json":"[\r\n\t{\r\n\t\t\"featureType\": \"landscape\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#FFB000\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": 71.66666666666669\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": -28.400000000000006\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t},\r\n\t{\r\n\t\t\"featureType\": \"road.highway\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#E8FF00\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": -76.6\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": 113\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t},\r\n\t{\r\n\t\t\"featureType\": \"road.arterial\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#FF8300\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": -77\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": 27.400000000000006\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t},\r\n\t{\r\n\t\t\"featureType\": \"road.local\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#FF8C00\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": -66.6\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": 34.400000000000006\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t},\r\n\t{\r\n\t\t\"featureType\": \"water\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#00C4FF\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": 22.799999999999997\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": -11.399999999999991\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t},\r\n\t{\r\n\t\t\"featureType\": \"poi\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#9FFF00\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": 0\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": -23.200000000000003\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t}\r\n]","views":838,"createdBy":{"name":"Ferienhaus Godewind","url":"http://ferienhaus-godewind.net"},"createdOn":"2014-02-20T03:20:27.927"},{"id":33,"name":"Jane Iredale","description":"A funky map with a lot of color.","url":"http://snazzymaps.com/style/33/jane-iredale","json":"[\r\n\t{\r\n\t\tfeatureType: 'water',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#87bcba' },\r\n\t\t\t{ saturation: -37 },\r\n\t\t\t{ lightness: -17 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'landscape',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'landscape.man_made',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#4f6b46' },\r\n\t\t\t{ saturation: -23 },\r\n\t\t\t{ lightness: -61 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'road',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#d38bc8' },\r\n\t\t\t{ saturation: -55 },\r\n\t\t\t{ lightness: 13 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'road.highway',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#ffa200' },\r\n\t\t\t{ saturation: 100 },\r\n\t\t\t{ lightness: -22 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'road.local',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#d38bc8' },\r\n\t\t\t{ saturation: -55 },\r\n\t\t\t{ lightness: -31 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'transit',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#f69d94' },\r\n\t\t\t{ saturation: 84 },\r\n\t\t\t{ lightness: 9 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'administrative',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#d38bc8' },\r\n\t\t\t{ saturation: 45 },\r\n\t\t\t{ lightness: 36 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'administrative.country',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#d38bc8' },\r\n\t\t\t{ saturation: 45 },\r\n\t\t\t{ lightness: 36 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'administrative.land_parcel',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#d38bc8' },\r\n\t\t\t{ saturation: 45 },\r\n\t\t\t{ lightness: 36 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'poi.government',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#d38bc8' },\r\n\t\t\t{ saturation: 35 },\r\n\t\t\t{ lightness: -19 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'poi.school',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#d38bc8' },\r\n\t\t\t{ saturation: -6 },\r\n\t\t\t{ lightness: -17 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'poi.park',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#b2ba70' },\r\n\t\t\t{ saturation: -19 },\r\n\t\t\t{ lightness: -25 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t}\r\n]","views":807,"createdBy":{"name":"Keri Segalla","url":"http://www.janeiredale.com"},"createdOn":"2013-11-09T17:59:56.383"},{"id":63,"name":"Caribbean Mountain","description":"Inspired by mountain towns in the Dominican Republic.","url":"http://snazzymaps.com/style/63/caribbean-mountain","json":"[\r\n {\r\n \"featureType\": \"poi.medical\",\r\n \"stylers\": [\r\n { \"visibility\": \"simplified\" }\r\n ]\r\n },{\r\n \"featureType\": \"poi.business\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"poi.place_of_worship\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"poi\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"landscape\",\r\n \"stylers\": [\r\n { \"color\": \"#cec6b3\" }\r\n ]\r\n },{\r\n \"featureType\": \"road\",\r\n \"stylers\": [\r\n { \"color\": \"#f2eee8\" }\r\n ]\r\n },{\r\n \"featureType\": \"water\",\r\n \"stylers\": [\r\n { \"color\": \"#01186a\" }\r\n ]\r\n },{\r\n \"featureType\": \"road\",\r\n \"elementType\": \"labels.text.fill\",\r\n \"stylers\": [\r\n { \"color\": \"#cec6b3\" }\r\n ]\r\n },{\r\n \"featureType\": \"landscape.man_made\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"poi.government\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n }\r\n]","views":793,"createdBy":{"name":"Josiah Sprague","url":"http://josiahsprague.com"},"createdOn":"2014-02-07T15:19:08.227"},{"id":66,"name":"Blueprint (No Labels)","description":"A simplified variation on the original Blueprint style. It's the perfect map for building your own world.","url":"http://snazzymaps.com/style/66/blueprint-no-labels","json":"[\r\n {\r\n \"stylers\": [\r\n { \"visibility\": \"simplified\" },\r\n { \"saturation\": -100 }\r\n ]\r\n },\r\n\t \r\n\t \r\n {\r\n \"featureType\": \"water\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#000045\"\r\n },\r\n {\r\n \"lightness\": 17\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"landscape\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"color\": \"#000045\"\r\n },\r\n {\r\n \"lightness\": 20\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road.highway\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"color\": \"#000045\"\r\n },\r\n {\r\n \"lightness\": 17\r\n }\r\n ]\r\n },\r\n\t\r\n\t\r\n\r\n\t\r\n\t\r\n {\r\n \"featureType\": \"road.highway\",\r\n \"elementType\": \"geometry.stroke\",\r\n \"stylers\": [\r\n \r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n\t\r\n\t\r\n\t {\r\n \"featureType\": \"road.highway.controlled_access\",\r\n \"elementType\": \"geometry.stroke\",\r\n \"stylers\": [\r\n { \"color\": \"#000045\"\r\n },\r\n {\r\n \"lightness\": 20\r\n }\r\n ]\r\n },\r\n\t\r\n\t\r\n\t\r\n {\r\n \"featureType\": \"road.arterial\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"color\": \"#000045\"\r\n },\r\n {\r\n \"lightness\": 25\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road.local\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"color\": \"#000045\"\r\n },\r\n {\r\n \"lightness\": 25\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"color\": \"#000045\"\r\n },\r\n {\r\n \"lightness\": 21\r\n }\r\n ]\r\n },\r\n {\r\n \"elementType\": \"labels.text.stroke\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"elementType\": \"labels.text.fill\",\r\n \"stylers\": [\r\n { \"saturation\": 100 },\r\n { \"color\": \"#7b94be\" },\r\n { \"lightness\": 50 }\r\n ]\r\n },\r\n\r\n {\r\n \"elementType\": \"labels.icon\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"transit\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"color\": \"#000045\"\r\n },\r\n {\r\n \"lightness\": 19\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"administrative\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"color\": \"#000045\"\r\n },\r\n {\r\n \"lightness\": 20\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"administrative\",\r\n \"elementType\": \"geometry.stroke\",\r\n \"stylers\": [\r\n { \"color\": \"#000045\"\r\n },\r\n {\r\n \"lightness\": 17\r\n },\r\n {\r\n \"weight\": 1.2\r\n }\r\n ]\r\n }\r\n]\t\t\t\r\n\t","views":782,"createdBy":{"name":"Adam Ritchey","url":"http://www.interramedia.com"},"createdOn":"2014-02-20T03:12:20.75"},{"id":81,"name":"Ilustração","description":"Estilo baseado nas cores de ilustrações, como panfletos. O estilo também foi utilizado no site Tô No Bloco, que tem como finalidade ser um \"panfleto virtual\" dos blocos de carnaval.\r\n\r\nStyle based on the colors of graphics as flyers. The style was also used on the site Tô In Block, which aims to be a \"virtual flyers\" of carnival blocks.","url":"http://snazzymaps.com/style/81/ilustra%C3%A7%C3%A3o","json":"[\r\n\t{\r\n\t\tfeatureType: 'water',\r\n\t\telementType: 'geometry',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#71ABC3' },\r\n\t\t\t{ saturation: -10 },\r\n\t\t\t{ lightness: -21 },\r\n\t\t\t{ visibility: 'simplified' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'landscape.natural',\r\n\t\telementType: 'geometry',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#7DC45C' },\r\n\t\t\t{ saturation: 37 },\r\n\t\t\t{ lightness: -41 },\r\n\t\t\t{ visibility: 'simplified' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'landscape.man_made',\r\n\t\telementType: 'geometry',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#C3E0B0' },\r\n\t\t\t{ saturation: 23 },\r\n\t\t\t{ lightness: -12 },\r\n\t\t\t{ visibility: 'simplified' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'poi',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#A19FA0' },\r\n\t\t\t{ saturation: -98 },\r\n\t\t\t{ lightness: -20 },\r\n\t\t\t{ visibility: 'off' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'road',\r\n\t\telementType: 'geometry',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#FFFFFF' },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: 100 },\r\n\t\t\t{ visibility: 'simplified' }\r\n\t\t]\r\n\t}\r\n]","views":749,"createdBy":{"name":"Marcelo Oliveira Murta","url":"http://www.tonobloco.com.br"},"createdOn":"2014-04-16T02:57:57.38"},{"id":62,"name":"Night vision","description":"A style reminiscent of awesome night vision goggles.","url":"http://snazzymaps.com/style/62/night-vision","json":"[\r\n\t{\r\n\t\tfeatureType: 'water',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#001204' },\r\n\t\t\t{ saturation: 100 },\r\n\t\t\t{ lightness: -95 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'landscape.man_made',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#007F1E' },\r\n\t\t\t{ saturation: 100 },\r\n\t\t\t{ lightness: -72 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'landscape.natural',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#00C72E' },\r\n\t\t\t{ saturation: 100 },\r\n\t\t\t{ lightness: -59 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'road',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#002C0A' },\r\n\t\t\t{ saturation: 100 },\r\n\t\t\t{ lightness: -87 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'poi',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#00A927' },\r\n\t\t\t{ saturation: 100 },\r\n\t\t\t{ lightness: -58 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t}\r\n]","views":708,"createdBy":{"name":"Raphael Franco","url":"http://snazzymaps.com"},"createdOn":"2014-02-07T15:18:05.237"},{"id":67,"name":"Blueprint","description":"If you were going to build your own world, this is the map you would use.","url":"http://snazzymaps.com/style/67/blueprint","json":"[\r\n \r\n\t \r\n\t \r\n {\r\n \"featureType\": \"water\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#000045\"\r\n },\r\n {\r\n \"lightness\": 17\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"landscape\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"color\": \"#000045\"\r\n },\r\n {\r\n \"lightness\": 20\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road.highway\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"color\": \"#000045\"\r\n },\r\n {\r\n \"lightness\": 17\r\n }\r\n ]\r\n },\r\n\t\r\n\t\r\n\r\n\t\r\n\t\r\n {\r\n \"featureType\": \"road\",\r\n \"elementType\": \"geometry.stroke\",\r\n \"stylers\": [\r\n\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n\t\r\n\t\r\n\t {\r\n \"featureType\": \"road.highway.controlled_access\",\r\n \"elementType\": \"geometry.stroke\",\r\n \"stylers\": [\r\n { \"color\": \"#000045\"\r\n },\r\n {\r\n \"lightness\": 20\r\n }\r\n ]\r\n },\r\n\t\r\n\t\r\n\t\r\n {\r\n \"featureType\": \"road.arterial\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"color\": \"#000045\"\r\n },\r\n {\r\n \"lightness\": 25\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road.local\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"color\": \"#000045\"\r\n },\r\n {\r\n \"lightness\": 25\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"color\": \"#000045\"\r\n },\r\n {\r\n \"lightness\": 21\r\n }\r\n ]\r\n },\r\n {\r\n \"elementType\": \"labels.text.stroke\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"elementType\": \"labels.text.fill\",\r\n \"stylers\": [\r\n { \"saturation\": 0 },\r\n { \"color\": \"#4d88ea\" },\r\n { \"lightness\": 0 }\r\n ]\r\n },\r\n\r\n {\r\n \"elementType\": \"labels.icon\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"transit\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"color\": \"#000045\"\r\n },\r\n {\r\n \"lightness\": 19\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"administrative\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"color\": \"#000045\"\r\n },\r\n {\r\n \"lightness\": 20\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"administrative\",\r\n \"elementType\": \"geometry.stroke\",\r\n \"stylers\": [\r\n { \"color\": \"#000045\"\r\n },\r\n {\r\n \"lightness\": 17\r\n },\r\n {\r\n \"weight\": 1.2\r\n }\r\n ]\r\n }\r\n]\t\t","views":657,"createdBy":{"name":"Adam Ritchey","url":"http://www.interramedia.com"},"createdOn":"2014-02-20T03:12:38.097"},{"id":87,"name":"Red & Green","description":"My first style.","url":"http://snazzymaps.com/style/87/red-and-green","json":"[\r\n {\r\n \"featureType\": \"landscape\",\r\n \"stylers\": [\r\n { \"lightness\": 16 },\r\n { \"hue\": \"#ff001a\" },\r\n { \"saturation\": -61 }\r\n ]\r\n },{\r\n \"featureType\": \"road.highway\",\r\n \"stylers\": [\r\n { \"hue\": \"#ff0011\" },\r\n { \"lightness\": 53 }\r\n ]\r\n },{\r\n \"featureType\": \"poi.park\",\r\n \"stylers\": [\r\n { \"hue\": \"#00ff91\" }\r\n ]\r\n },{\r\n \"elementType\": \"labels\",\r\n \"stylers\": [\r\n { \"lightness\": 63 },\r\n { \"hue\": \"#ff0000\" }\r\n ]\r\n },{\r\n \"featureType\": \"water\",\r\n \"stylers\": [\r\n { \"hue\": \"#0055ff\" }\r\n ]\r\n },{\r\n \"featureType\": \"road\",\r\n \"elementType\": \"labels\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n }\r\n]","views":630,"createdBy":{"name":"Fabian","url":"http://www.fabiangental.com"},"createdOn":"2014-04-29T21:30:21.347"},{"id":107,"name":"Blue-ish","description":"Faded colors, roads in blue","url":"http://snazzymaps.com/style/107/blue-ish","json":"[\r\n{\"stylers\": [{\"saturation\": -45}, {\"lightness\": 13}]},\r\n{\"featureType\": \"road.highway\", \"elementType\": \"geometry.fill\", \"stylers\": [{\"color\": \"#8fa7b3\"}]},\r\n{\"featureType\": \"road.highway\", \"elementType\": \"geometry.stroke\", \"stylers\": [{\"color\": \"#667780\"}]},\r\n{\"featureType\": \"road.highway\", \"elementType\": \"labels.text.fill\", \"stylers\": [{\"color\": \"#333333\"}]},\r\n{\"featureType\": \"road.highway\", \"elementType\": \"labels.text.stroke\", \"stylers\": [{\"color\": \"#8fa7b3\"}, {\"gamma\": 2}]},\r\n{\"featureType\": \"road.arterial\", \"elementType\": \"geometry.fill\", \"stylers\": [{\"color\": \"#a3becc\"}]},\r\n{\"featureType\": \"road.arterial\", \"elementType\": \"geometry.stroke\", \"stylers\": [{\"color\": \"#7a8f99\"}]},\r\n{\"featureType\": \"road.arterial\", \"elementType\": \"labels.text.fill\", \"stylers\": [{\"color\": \"#555555\"}]},\r\n{\"featureType\": \"road.local\", \"elementType\": \"geometry.fill\", \"stylers\": [{\"color\": \"#a3becc\"}]},\r\n{\"featureType\": \"road.local\", \"elementType\": \"geometry.stroke\", \"stylers\": [{\"color\": \"#7a8f99\"}]},\r\n{\"featureType\": \"road.local\", \"elementType\": \"labels.text.fill\", \"stylers\": [{\"color\": \"#555555\"}]},\r\n{\"featureType\": \"water\", \"elementType\": \"geometry.fill\", \"stylers\": [{\"color\": \"#bbd9e9\"}]},\r\n{\"featureType\": \"administrative\", \"elementType\": \"labels.text.fill\", \"stylers\": [{\"color\": \"#525f66\"}]},\r\n{\"featureType\": \"transit\", \"elementType\": \"labels.text.stroke\", \"stylers\": [{\"color\": \"#bbd9e9\"}, {\"gamma\": 2}]},\r\n{\"featureType\": \"transit.line\", \"elementType\": \"geometry.fill\", \"stylers\": [{\"color\": \"#a3aeb5\"}]}\r\n]","views":586,"createdBy":{"name":"Anonymous","url":"http://snazzymaps.com"},"createdOn":"2014-07-10T02:07:22.597"},{"id":89,"name":"Green","description":"A simple green style.","url":"http://snazzymaps.com/style/89/green","json":"[\r\n {\r\n \"featureType\": \"landscape\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"color\": \"#bbd5c5\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.local\",\r\n \"elementType\": \"geometry.stroke\",\r\n \"stylers\": [\r\n { \"color\": \"#808080\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.highway\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"color\": \"#fcf9a2\" }\r\n ]\r\n },{\r\n \"featureType\": \"poi\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"color\": \"#bbd5c5\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.highway\",\r\n \"elementType\": \"geometry.stroke\",\r\n \"stylers\": [\r\n { \"color\": \"#808080\" }\r\n ]\r\n }\r\n]","views":548,"createdBy":{"name":"eric","url":"http://snazzymaps.com"},"createdOn":"2014-04-29T21:31:40.253"},{"id":93,"name":"Lost in the desert","description":"Minimalist map that uses desert inspired tones.","url":"http://snazzymaps.com/style/93/lost-in-the-desert","json":"[\r\n {\r\n \"elementType\": \"labels\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" },\r\n { \"color\": \"#f49f53\" }\r\n ]\r\n },{\r\n \"featureType\": \"landscape\",\r\n \"stylers\": [\r\n { \"color\": \"#f9ddc5\" },\r\n { \"lightness\": -7 }\r\n ]\r\n },{\r\n \"featureType\": \"road\",\r\n \"stylers\": [\r\n { \"color\": \"#813033\" },\r\n { \"lightness\": 43 }\r\n ]\r\n },{\r\n \"featureType\": \"poi.business\",\r\n \"stylers\": [\r\n { \"color\": \"#645c20\" },\r\n { \"lightness\": 38 }\r\n ]\r\n },{\r\n \"featureType\": \"water\",\r\n \"stylers\": [\r\n { \"color\": \"#1994bf\" },\r\n { \"saturation\": -69 },\r\n { \"gamma\": 0.99 },\r\n { \"lightness\": 43 }\r\n ]\r\n },{\r\n \"featureType\": \"road.local\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"color\": \"#f19f53\" },\r\n { \"weight\": 1.3 },\r\n { \"visibility\": \"on\" },\r\n { \"lightness\": 16 }\r\n ]\r\n },{\r\n \"featureType\": \"poi.business\" },{\r\n \"featureType\": \"poi.park\",\r\n \"stylers\": [\r\n { \"color\": \"#645c20\" },\r\n { \"lightness\": 39 }\r\n ]\r\n },{\r\n \"featureType\": \"poi.school\",\r\n \"stylers\": [\r\n { \"color\": \"#a95521\" },\r\n { \"lightness\": 35 }\r\n ]\r\n },{\r\n },{\r\n \"featureType\": \"poi.medical\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"color\": \"#813033\" },\r\n { \"lightness\": 38 },\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n },{\r\n },{\r\n },{\r\n },{\r\n },{\r\n },{\r\n },{\r\n },{\r\n },{\r\n },{\r\n },{\r\n \"elementType\": \"labels\" },{\r\n \"featureType\": \"poi.sports_complex\",\r\n \"stylers\": [\r\n { \"color\": \"#9e5916\" },\r\n { \"lightness\": 32 }\r\n ]\r\n },{\r\n },{\r\n \"featureType\": \"poi.government\",\r\n \"stylers\": [\r\n { \"color\": \"#9e5916\" },\r\n { \"lightness\": 46 }\r\n ]\r\n },{\r\n \"featureType\": \"transit.station\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"transit.line\",\r\n \"stylers\": [\r\n { \"color\": \"#813033\" },\r\n { \"lightness\": 22 }\r\n ]\r\n },{\r\n \"featureType\": \"transit\",\r\n \"stylers\": [\r\n { \"lightness\": 38 }\r\n ]\r\n },{\r\n \"featureType\": \"road.local\",\r\n \"elementType\": \"geometry.stroke\",\r\n \"stylers\": [\r\n { \"color\": \"#f19f53\" },\r\n { \"lightness\": -10 }\r\n ]\r\n },{\r\n },{\r\n },{\r\n }\r\n]","views":543,"createdBy":{"name":"Diana Caballero","url":"http://www.simalam.com"},"createdOn":"2014-04-29T21:35:28.373"},{"id":100,"name":"Brownie","description":"Brownie map made for jazz bar website. ","url":"http://snazzymaps.com/style/100/brownie","json":"[\r\n {\r\n \"stylers\": [\r\n { \"hue\": \"#ff8800\" },\r\n { \"gamma\": 0.4 }\r\n ]\r\n }\r\n]","views":536,"createdBy":{"name":"Simon","url":"http://snazzymaps.com"},"createdOn":"2014-05-27T15:06:01.78"},{"id":96,"name":"Bobby's World","description":"I made the general look mimic an old elementary school globe and put highlights on the cities w/ grey, blue, and pink.","url":"http://snazzymaps.com/style/96/bobbys-world","json":"[ { \"featureType\": \"landscape.natural.landcover\", \"stylers\": [ { \"gamma\": 0.44 }, { \"hue\": \"#2bff00\" } ] },{ \"featureType\": \"water\", \"stylers\": [ { \"hue\": \"#00a1ff\" }, { \"saturation\": 29 }, { \"gamma\": 0.74 } ] },{ \"featureType\": \"landscape.natural.terrain\", \"stylers\": [ { \"hue\": \"#00ff00\" }, { \"saturation\": 54 }, { \"lightness\": -51 }, { \"gamma\": 0.4 } ] },{ \"featureType\": \"transit.line\", \"stylers\": [ { \"gamma\": 0.27 }, { \"hue\": \"#0077ff\" }, { \"saturation\": -91 }, { \"lightness\": 36 } ] },{ \"featureType\": \"landscape.man_made\", \"stylers\": [ { \"saturation\": 10 }, { \"lightness\": -23 }, { \"hue\": \"#0099ff\" }, { \"gamma\": 0.71 } ] },{ \"featureType\": \"poi.business\", \"stylers\": [ { \"hue\": \"#0055ff\" }, { \"saturation\": 9 }, { \"lightness\": -46 }, { \"gamma\": 1.05 } ] },{ \"featureType\": \"administrative.country\", \"stylers\": [ { \"gamma\": 0.99 } ] },{ \"featureType\": \"administrative.province\", \"stylers\": [ { \"lightness\": 36 }, { \"saturation\": -54 }, { \"gamma\": 0.76 } ] },{ \"featureType\": \"administrative.locality\", \"stylers\": [ { \"lightness\": 33 }, { \"saturation\": -61 }, { \"gamma\": 1.21 } ] },{ \"featureType\": \"administrative.neighborhood\", \"stylers\": [ { \"hue\": \"#ff0000\" }, { \"gamma\": 2.44 } ] },{ \"featureType\": \"road.highway.controlled_access\", \"stylers\": [ { \"hue\": \"#ff0000\" }, { \"lightness\": 67 }, { \"saturation\": -40 } ] },{ \"featureType\": \"road.arterial\", \"stylers\": [ { \"hue\": \"#ff6600\" }, { \"saturation\": 52 }, { \"gamma\": 0.64 } ] },{ \"featureType\": \"road.local\", \"stylers\": [ { \"hue\": \"#006eff\" }, { \"gamma\": 0.46 }, { \"saturation\": -3 }, { \"lightness\": -10 } ] },{ \"featureType\": \"transit.line\", \"stylers\": [ { \"hue\": \"#0077ff\" }, { \"saturation\": -46 }, { \"gamma\": 0.58 } ] },{ \"featureType\": \"transit.station\", \"stylers\": [ { \"gamma\": 0.8 } ] },{ \"featureType\": \"transit.station.rail\", \"stylers\": [ { \"hue\": \"#ff0000\" }, { \"saturation\": -45 }, { \"gamma\": 0.9 } ] },{ \"elementType\": \"labels.text.fill\", \"stylers\": [ { \"gamma\": 0.58 } ] },{ \"featureType\": \"landscape.man_made\", \"elementType\": \"geometry.fill\", \"stylers\": [ { \"gamma\": 2.01 }, { \"hue\": \"#00ffff\" }, { \"lightness\": 22 } ] },{ \"featureType\": \"transit\", \"stylers\": [ { \"saturation\": -87 }, { \"lightness\": 44 }, { \"gamma\": 1.98 }, { \"visibility\": \"off\" } ] },{ \"featureType\": \"poi.business\", \"elementType\": \"labels.text\", \"stylers\": [ { \"gamma\": 0.06 }, { \"visibility\": \"off\" } ] },{ \"featureType\": \"poi\", \"elementType\": \"geometry\", \"stylers\": [ { \"hue\": \"#00aaff\" }, { \"lightness\": -6 }, { \"gamma\": 2.21 } ] },{ \"elementType\": \"labels.text.stroke\", \"stylers\": [ { \"gamma\": 3.84 } ] },{ \"featureType\": \"road\", \"elementType\": \"geometry.stroke\", \"stylers\": [ { \"visibility\": \"off\" } ] },{ \"featureType\": \"road\", \"elementType\": \"labels.text.stroke\", \"stylers\": [ { \"gamma\": 9.99 } ] },{ \"featureType\": \"administrative\", \"stylers\": [ { \"gamma\": 0.01 } ] } ]","views":535,"createdBy":{"name":"Matthew Haeck","url":"http://haeckdesign.com/"},"createdOn":"2014-05-27T15:03:07.793"},{"id":92,"name":"Blue Cyan","description":"Blue and cyan style","url":"http://snazzymaps.com/style/92/blue-cyan","json":"[\r\n {\r\n \"featureType\": \"water\",\r\n \"stylers\": [\r\n { \"visibility\": \"on\" },\r\n { \"color\": \"#333333\" }\r\n ]\r\n },{\r\n \"featureType\": \"landscape.natural\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"visibility\": \"on\" },\r\n { \"color\": \"#666666\" }\r\n ]\r\n },{\r\n \"featureType\": \"landscape.man_made\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"transit\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"poi\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"color\": \"#df2f23\" },\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.highway.controlled_access\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"visibility\": \"on\" },\r\n { \"color\": \"#cccccc\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.highway.controlled_access\",\r\n \"elementType\": \"geometry.stroke\",\r\n \"stylers\": [\r\n { \"color\": \"#999999\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.local\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.arterial\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"color\": \"#aaaaaa\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.arterial\",\r\n \"elementType\": \"geometry.stroke\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.highway\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"color\": \"#808080\" }\r\n ]\r\n },{\r\n \"featureType\": \"administrative\",\r\n \"elementType\": \"geometry.stroke\",\r\n \"stylers\": [\r\n { \"color\": \"#aaaaaa\" }\r\n ]\r\n },{\r\n \"featureType\": \"administrative\",\r\n \"elementType\": \"labels.text\" },{\r\n \"featureType\": \"road.highway\",\r\n \"elementType\": \"geometry.stroke\",\r\n \"stylers\": [\r\n { \"color\": \"#c6eeee\" }\r\n ]\r\n },{\r\n }\r\n]","views":530,"createdBy":{"name":"Shawn Chin","url":"http://skylab1.com"},"createdOn":"2014-04-29T21:34:48.877"},{"id":98,"name":"Purple Rain","description":"Everything on this map is a pleasant shade of desaturated purple.","url":"http://snazzymaps.com/style/98/purple-rain","json":"[\r\n {\r\n \"featureType\": \"road\",\r\n \"stylers\": [\r\n { \"hue\": \"#5e00ff\" },\r\n { \"saturation\": -79 }\r\n ]\r\n },{\r\n \"featureType\": \"poi\",\r\n \"stylers\": [\r\n { \"saturation\": -78 },\r\n { \"hue\": \"#6600ff\" },\r\n { \"lightness\": -47 },\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.local\",\r\n \"stylers\": [\r\n { \"lightness\": 22 }\r\n ]\r\n },{\r\n \"featureType\": \"landscape\",\r\n \"stylers\": [\r\n { \"hue\": \"#6600ff\" },\r\n { \"saturation\": -11 }\r\n ]\r\n },{\r\n },{\r\n },{\r\n \"featureType\": \"water\",\r\n \"stylers\": [\r\n { \"saturation\": -65 },\r\n { \"hue\": \"#1900ff\" },\r\n { \"lightness\": 8 }\r\n ]\r\n },{\r\n \"featureType\": \"road.local\",\r\n \"stylers\": [\r\n { \"weight\": 1.3 },\r\n { \"lightness\": 30 }\r\n ]\r\n },{\r\n \"featureType\": \"transit\",\r\n \"stylers\": [\r\n { \"visibility\": \"simplified\" },\r\n { \"hue\": \"#5e00ff\" },\r\n { \"saturation\": -16 }\r\n ]\r\n },{\r\n \"featureType\": \"transit.line\",\r\n \"stylers\": [\r\n { \"saturation\": -72 }\r\n ]\r\n },{\r\n }\r\n]","views":519,"createdBy":{"name":"Tony Webster","url":"https://tonywebster.com/"},"createdOn":"2014-05-27T15:04:53.073"},{"id":101,"name":"Bright Dessert","description":"Bright water and sandy landscape and roads.","url":"http://snazzymaps.com/style/101/bright-dessert","json":"[\r\n {\r\n \"featureType\": \"landscape\",\r\n \"stylers\": [\r\n { \"saturation\": -7 },\r\n { \"gamma\": 1.02 },\r\n { \"hue\": \"#ffc300\" },\r\n { \"lightness\": -10 }\r\n ]\r\n },{\r\n \"featureType\": \"road.highway\",\r\n \"stylers\": [\r\n { \"hue\": \"#ffaa00\" },\r\n { \"saturation\": -45 },\r\n { \"gamma\": 1 },\r\n { \"lightness\": -4 }\r\n ]\r\n },{\r\n \"featureType\": \"road.arterial\",\r\n \"stylers\": [\r\n { \"hue\": \"#ffaa00\" },\r\n { \"lightness\": -10 },\r\n { \"saturation\": 64 },\r\n { \"gamma\": 0.9 }\r\n ]\r\n },{\r\n \"featureType\": \"road.local\",\r\n \"stylers\": [\r\n { \"lightness\": -5 },\r\n { \"hue\": \"#00f6ff\" },\r\n { \"saturation\": -40 },\r\n { \"gamma\": 0.75 }\r\n ]\r\n },{\r\n \"featureType\": \"poi\",\r\n \"stylers\": [\r\n { \"saturation\": -30 },\r\n { \"lightness\": 11 },\r\n { \"gamma\": 0.5 },\r\n { \"hue\": \"#ff8000\" }\r\n ]\r\n },{\r\n \"featureType\": \"water\",\r\n \"stylers\": [\r\n { \"hue\": \"#0077ff\" },\r\n { \"gamma\": 1.25 },\r\n { \"saturation\": -22 },\r\n { \"lightness\": -31 }\r\n ]\r\n }\r\n]","views":489,"createdBy":{"name":"Bim Legaspi","url":"http://snazzymaps.com"},"createdOn":"2014-05-27T15:06:33.67"},{"id":78,"name":"Pink & Blue","description":null,"url":"http://snazzymaps.com/style/78/pink-and-blue","json":"[ { \"featureType\": \"landscape\", \"stylers\": [ { \"visibility\": \"simplified\" }, { \"color\": \"#9debff\" }, { \"weight\": 0.1 } ] },{ \"featureType\": \"water\", \"stylers\": [ { \"visibility\": \"simplified\" }, { \"color\": \"#ebebeb\" } ] },{ \"featureType\": \"road.arterial\", \"elementType\": \"geometry\", \"stylers\": [ { \"visibility\": \"on\" }, { \"color\": \"#51dbff\" } ] },{ \"featureType\": \"poi.park\", \"elementType\": \"geometry.fill\", \"stylers\": [ { \"visibility\": \"on\" }, { \"color\": \"#51dbff\" } ] },{ \"featureType\": \"poi\" },{ \"featureType\": \"transit.line\", \"stylers\": [ { \"color\": \"#ff4e80\" }, { \"visibility\": \"off\" } ] },{ \"featureType\": \"road\", \"elementType\": \"geometry.stroke\", \"stylers\": [ { \"visibility\": \"on\" }, { \"weight\": 1.5 }, { \"color\": \"#51dbff\" } ] },{ \"featureType\": \"road.arterial\", \"elementType\": \"geometry\", \"stylers\": [ { \"visibility\": \"simplified\" }, { \"color\": \"#51dbNaN\" } ] },{ \"featureType\": \"road.highway\", \"elementType\": \"geometry\", \"stylers\": [ { \"visibility\": \"simplified\" }, { \"color\": \"#51dbff\" } ] },{ \"featureType\": \"poi.business\", \"stylers\": [ { \"color\": \"#9debff\" }, { \"visibility\": \"off\" } ] },{ },{ \"featureType\": \"poi.government\", \"stylers\": [ { \"visibility\": \"off\" } ] },{ \"featureType\": \"poi.school\", \"stylers\": [ { \"visibility\": \"off\" } ] },{ \"featureType\": \"administrative\", \"stylers\": [ { \"visibility\": \"on\" } ] },{ \"featureType\": \"poi.medical\", \"stylers\": [ { \"visibility\": \"off\" } ] },{ \"featureType\": \"poi.attraction\", \"elementType\": \"geometry\", \"stylers\": [ { \"visibility\": \"on\" }, { \"color\": \"#51dbff\" } ] },{ \"featureType\": \"poi.place_of_worship\", \"stylers\": [ { \"visibility\": \"off\" } ] },{ \"featureType\": \"poi.sports_complex\", \"stylers\": [ { \"visibility\": \"off\" } ] },{ },{ \"featureType\": \"road.arterial\", \"elementType\": \"labels.text.stroke\", \"stylers\": [ { \"color\": \"#000000\" }, { \"visibility\": \"off\" } ] },{ \"featureType\": \"road.highway\", \"elementType\": \"labels.text\", \"stylers\": [ { \"visibility\": \"off\" } ] },{ \"featureType\": \"road.highway.controlled_access\", \"stylers\": [ { \"visibility\": \"off\" } ] },{ \"featureType\": \"road\" } ]","views":449,"createdBy":{"name":"cebrat","url":"http://snazzymaps.com"},"createdOn":"2014-04-16T02:53:43.42"},{"id":94,"name":"San Andreas","description":"In a similar color scheme as the map in the video game Grand Theft Auto: San Andreas","url":"http://snazzymaps.com/style/94/san-andreas","json":"[\r\n {\r\n \"featureType\": \"road\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"lightness\": -100 }\r\n ]\r\n },{\r\n \"featureType\": \"road\",\r\n \"elementType\": \"geometry.stroke\",\r\n \"stylers\": [\r\n { \"lightness\": -100 },\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"road\",\r\n \"elementType\": \"labels.text.fill\",\r\n \"stylers\": [\r\n { \"lightness\": 100 }\r\n ]\r\n },{\r\n \"featureType\": \"road\",\r\n \"elementType\": \"labels.text.stroke\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"water\",\r\n \"stylers\": [\r\n { \"visibility\": \"on\" },\r\n { \"saturation\": 100 },\r\n { \"hue\": \"#006eff\" },\r\n { \"lightness\": -19 }\r\n ]\r\n },{\r\n \"featureType\": \"landscape\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"saturation\": -100 },\r\n { \"lightness\": -16 }\r\n ]\r\n },{\r\n \"featureType\": \"poi\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"hue\": \"#2bff00\" },\r\n { \"lightness\": -39 },\r\n { \"saturation\": 8 }\r\n ]\r\n },{\r\n \"featureType\": \"poi.attraction\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"lightness\": 100 },\r\n { \"saturation\": -100 }\r\n ]\r\n },{\r\n \"featureType\": \"poi.business\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"saturation\": -100 },\r\n { \"lightness\": 100 }\r\n ]\r\n },{\r\n \"featureType\": \"poi.government\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"lightness\": 100 },\r\n { \"saturation\": -100 }\r\n ]\r\n },{\r\n \"featureType\": \"poi.medical\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"lightness\": 100 },\r\n { \"saturation\": -100 }\r\n ]\r\n },{\r\n \"featureType\": \"poi.place_of_worship\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"lightness\": 100 },\r\n { \"saturation\": -100 }\r\n ]\r\n },{\r\n \"featureType\": \"poi.school\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"saturation\": -100 },\r\n { \"lightness\": 100 }\r\n ]\r\n },{\r\n \"featureType\": \"poi.sports_complex\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"saturation\": -100 },\r\n { \"lightness\": 100 }\r\n ]\r\n }\r\n]","views":405,"createdBy":{"name":"Yagonagos","url":"http://snazzymaps.com"},"createdOn":"2014-05-27T15:01:13.587"},{"id":85,"name":"Totally Pink","description":"Totally pink for all you pink-lovers","url":"http://snazzymaps.com/style/85/totally-pink","json":"[\r\n\t{\r\n\t\t\"featureType\": \"landscape\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#F600FF\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": 0\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": 0\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t},\r\n\t{\r\n\t\t\"featureType\": \"road.highway\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#DE00FF\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": -4.6000000000000085\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": -1.4210854715202004e-14\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t},\r\n\t{\r\n\t\t\"featureType\": \"road.arterial\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#FF009A\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": 0\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": 0\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t},\r\n\t{\r\n\t\t\"featureType\": \"road.local\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#FF0098\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": 0\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": 0\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t},\r\n\t{\r\n\t\t\"featureType\": \"water\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#EC00FF\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": 72.4\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": 0\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t},\r\n\t{\r\n\t\t\"featureType\": \"poi\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#7200FF\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": 49\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": 0\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t}\r\n]","views":389,"createdBy":{"name":"Michael","url":"http://www.michaelspaans.nl"},"createdOn":"2014-04-29T21:29:12.443"},{"id":111,"name":"The Propia Effect","description":"A rich blue with a vibrant pink creating the perfect contrast","url":"http://snazzymaps.com/style/111/the-propia-effect","json":"[\r\n {\r\n \"featureType\": \"landscape\",\r\n \"stylers\": [\r\n { \"visibility\": \"simplified\" },\r\n { \"color\": \"#2b3f57\" },\r\n { \"weight\": 0.1 }\r\n ]\r\n },{\r\n \"featureType\": \"administrative\",\r\n \"stylers\": [\r\n { \"visibility\": \"on\" },\r\n { \"hue\": \"#ff0000\" },\r\n { \"weight\": 0.4 },\r\n { \"color\": \"#ffffff\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.highway\",\r\n \"elementType\": \"labels.text\",\r\n \"stylers\": [\r\n { \"weight\": 1.3 },\r\n { \"color\": \"#FFFFFF\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.highway\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"color\": \"#f55f77\" },\r\n { \"weight\": 3 }\r\n ]\r\n },{\r\n \"featureType\": \"road.arterial\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"color\": \"#f55f77\" },\r\n { \"weight\": 1.1 }\r\n ]\r\n },{\r\n \"featureType\": \"road.local\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"color\": \"#f55f77\" },\r\n { \"weight\": 0.4 }\r\n ]\r\n },{\r\n },{\r\n \"featureType\": \"road.highway\",\r\n \"elementType\": \"labels\",\r\n \"stylers\": [\r\n { \"weight\": 0.8 },\r\n { \"color\": \"#ffffff\" },\r\n { \"visibility\": \"on\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.local\",\r\n \"elementType\": \"labels\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.arterial\",\r\n \"elementType\": \"labels\",\r\n \"stylers\": [\r\n { \"color\": \"#ffffff\" },\r\n { \"weight\": 0.7 }\r\n ]\r\n },{\r\n \"featureType\": \"poi\",\r\n \"elementType\": \"labels\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"poi\",\r\n \"stylers\": [\r\n { \"color\": \"#6c5b7b\" }\r\n ]\r\n },{\r\n \"featureType\": \"water\",\r\n \"stylers\": [\r\n { \"color\": \"#f3b191\" }\r\n ]\r\n },{\r\n \"featureType\": \"transit.line\",\r\n \"stylers\": [\r\n { \"visibility\": \"on\" }\r\n ]\r\n }\r\n]\r\n","views":382,"createdBy":{"name":"James Wells","url":"http://www.propia.co.uk"},"createdOn":"2014-07-10T02:10:14.983"},{"id":88,"name":"Overseas","description":"Simple blue and white theme that looks great when zoomed in to the street level.","url":"http://snazzymaps.com/style/88/overseas","json":"[\r\n\t{\r\n\t\tfeatureType: 'water',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#00559B' },\r\n\t\t\t{ saturation: 100 },\r\n\t\t\t{ lightness: -60 },\r\n\t\t\t{ visibility: 'simplified' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'landscape',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#ffffff' },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: 100 },\r\n\t\t\t{ visibility: 'simplified' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'landscape.man_made',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#ffffff' },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: 100 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'landscape.natural',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#ffffff' },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: 100 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'poi.park',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#ffffff' },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: 100 },\r\n\t\t\t{ visibility: 'off' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'road',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#00559B' },\r\n\t\t\t{ saturation: 100 },\r\n\t\t\t{ lightness: -53 },\r\n\t\t\t{ visibility: 'simplified' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'water',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'administrative.locality',\r\n\t\telementType: 'geometry',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#ffffff' },\r\n\t\t\t{ saturation: 0 },\r\n\t\t\t{ lightness: 100 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'water',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'poi.school',\r\n\t\telementType: 'labels',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#999999' },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: -28 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'poi',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#999999' },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: -23 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'administrative',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#2C3E50' },\r\n\t\t\t{ saturation: 29 },\r\n\t\t\t{ lightness: -52 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t}\r\n]\r\n","views":377,"createdBy":{"name":"Jorge Reis","url":"http://www.epap.pt"},"createdOn":"2014-04-29T21:31:11.743"},{"id":97,"name":"manushka","description":"faded, greenish, pale","url":"http://snazzymaps.com/style/97/manushka","json":"[\r\n {\r\n \"featureType\": \"water\",\r\n \"stylers\": [\r\n { \"color\": \"#6ebeab\" }\r\n ]\r\n },{\r\n \"featureType\": \"road\",\r\n \"stylers\": [\r\n { \"color\": \"#b5a15b\" }\r\n ]\r\n },{\r\n \"featureType\": \"landscape\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"color\": \"#f9f9f9\" }\r\n ]\r\n },{\r\n \"featureType\": \"landscape\",\r\n \"elementType\": \"labels.text.fill\",\r\n \"stylers\": [\r\n { \"color\": \"#808080\" }\r\n ]\r\n },{\r\n \"featureType\": \"administrative.locality\",\r\n \"elementType\": \"labels.text.fill\",\r\n \"stylers\": [\r\n { \"color\": \"#808080\" }\r\n ]\r\n },{\r\n \"featureType\": \"landscape.natural.terrain\",\r\n \"stylers\": [\r\n { \"color\": \"#d0d0d0\" }\r\n ]\r\n },{\r\n }\r\n]","views":374,"createdBy":{"name":"Guillaume","url":"http://lostwebdesigns.com"},"createdOn":"2014-05-27T15:03:43.457"},{"id":106,"name":"Dark Grey on Light Grey","description":"Clean Dark Grey on Light Grey","url":"http://snazzymaps.com/style/106/dark-grey-on-light-grey","json":"[\r\n {\r\n \"featureType\": \"administrative\",\r\n \"elementType\": \"labels\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"administrative.country\",\r\n \"elementType\": \"geometry.stroke\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#DCE7EB\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"administrative.province\",\r\n \"elementType\": \"geometry.stroke\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#DCE7EB\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"landscape\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"landscape.natural\",\r\n \"elementType\": \"labels\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi\",\r\n \"elementType\": \"all\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road\",\r\n \"elementType\": \"all\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road\",\r\n \"elementType\": \"labels\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"transit\",\r\n \"elementType\": \"labels.icon\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"transit.line\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"transit.line\",\r\n \"elementType\": \"labels.text\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"transit.station.airport\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"transit.station.airport\",\r\n \"elementType\": \"labels\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"water\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#83888B\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"water\",\r\n \"elementType\": \"labels\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n }\r\n]","views":361,"createdBy":{"name":"Jan","url":"http://snazzymaps.com"},"createdOn":"2014-07-10T02:04:02.877"},{"id":113,"name":"Golden Crown","description":"A merge of Golds & Blacks that only the kings of maps can have. Enjoy.","url":"http://snazzymaps.com/style/113/golden-crown","json":"[\t\r\n {\r\n \"featureType\": \"landscape\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"on\"\r\n },\r\n {\r\n \"color\": \"#e7cd79\"\r\n },\r\n {\r\n \"weight\": 0.1\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"water\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"simplified\"\r\n },\r\n {\r\n \"color\": \"#282828\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"landscape.natural.landcover\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"on\"\r\n },\r\n {\r\n \"color\": \"#d6bc68\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"administrative.locality\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n },\r\n {\r\n \"color\": \"#d6bc68\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road.arterial\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"on\"\r\n },\r\n {\r\n \"color\": \"#d6bc68\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi\",\r\n \"elementType\": \"all\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"on\"\r\n },\r\n {\r\n \"color\": \"#d6bc68\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"transit.station.airport\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n },\r\n {\r\n \"color\": \"#d6bc68\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi\"\r\n },\r\n {\r\n \"featureType\": \"transit.line\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#d6bc68\"\r\n },\r\n {\r\n \"visibility\": \"on\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road\",\r\n \"elementType\": \"geometry.stroke\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n },\r\n {\r\n \"weight\": 1 },\r\n {\r\n \"color\": \"#e9d9a6\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"simplified\"\r\n },\r\n {\r\n \"color\": \"#e9d9a6\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road.highway\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"simplified\"\r\n },\r\n {\r\n \"color\": \"#e9d9a6\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi.business\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#e9d9a6\"\r\n },\r\n {\r\n \"visibility\": \"on\"\r\n }\r\n ]\r\n },\r\n {},\r\n {\r\n \"featureType\": \"poi.government\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi.school\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"administrative\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi.medical\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi.attraction\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n },\r\n {\r\n \"color\": \"#cfb665\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi.place_of_worship\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi.sports_complex\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {},\r\n {\r\n \"featureType\": \"road.arterial\",\r\n \"elementType\": \"labels.text.stroke\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#cfb665\"\r\n },\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road.highway\",\r\n \"elementType\": \"labels.text\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road.highway.controlled_access\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road\"\r\n }\r\n]","views":357,"createdBy":{"name":"Scott Henderson","url":"http://www.sahdigital.co.uk"},"createdOn":"2014-07-10T02:11:44.683"},{"id":71,"name":"Jazzygreen","description":"Bright green and black style.","url":"http://snazzymaps.com/style/71/jazzygreen","json":"[\r\n\t{\r\n\t\t\"featureType\": \"landscape\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#000000\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": -100\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": 44\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t},\r\n\t{\r\n\t\t\"featureType\": \"road.highway\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#00F93f\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": 100\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": -40.95294117647059\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t},\r\n\t{\r\n\t\t\"featureType\": \"road.arterial\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#00F93f\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": 100\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": -51.15294117647059\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t},\r\n\t{\r\n\t\t\"featureType\": \"road.local\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#00F93f\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": 100\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": -50.35294117647059\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t},\r\n\t{\r\n\t\t\"featureType\": \"water\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#00F93f\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": 100\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": -50.35294117647059\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t},\r\n\t{\r\n\t\t\"featureType\": \"poi\",\r\n\t\t\"stylers\": [\r\n\t\t\t{\r\n\t\t\t\t\"hue\": \"#00F93f\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"saturation\": 100\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"lightness\": -50.35294117647059\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"gamma\": 1\r\n\t\t\t}\r\n\t\t]\r\n\t}\r\n]","views":344,"createdBy":{"name":"jazz","url":"http://snazzymaps.com"},"createdOn":"2014-02-28T15:09:12.847"},{"id":105,"name":"Veins","description":"A fresh reddish map.","url":"http://snazzymaps.com/style/105/veins","json":"[\r\n {\r\n \"stylers\": [\r\n {\r\n \"hue\": \"#B61530\"\r\n },\r\n {\r\n \"saturation\": 60\r\n \r\n },\r\n {\r\n\t \"lightness\": -40\r\n\t \r\n },\r\n \r\n ]\r\n },\r\n \r\n {\r\n \"elementType\": \"labels.text.fill\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#ffffff\"\r\n \r\n\t \r\n },\r\n \r\n ]\r\n },\r\n\r\n {\r\n \"featureType\": \"water\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#B61530\"\r\n }\r\n ]\r\n },\r\n \r\n \r\n\r\n {\r\n \"featureType\": \"road\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#B61530\"\r\n },\r\n {\r\n\t \r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road.local\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#B61530\"\r\n },\r\n {\r\n\t \"lightness\":6\r\n\t \r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road.highway\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#B61530\"\r\n },\r\n {\r\n\t \"lightness\":-25\r\n\t \r\n }\r\n ]\r\n },\r\n\r\n {\r\n \"featureType\": \"road.arterial\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#B61530\"\r\n },\r\n {\r\n\t \"lightness\":-10\r\n\t \r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"transit\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#B61530\"\r\n },\r\n {\r\n\t \"lightness\":70\r\n\t \r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"transit.line\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#B61530\"\r\n },\r\n {\r\n\t \"lightness\":90\r\n\t \r\n }\r\n ]\r\n },\r\n \r\n {\r\n \"featureType\": \"administrative.country\",\r\n \"elementType\": \"labels\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"transit.station\",\r\n \"elementType\": \"labels.text.stroke\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"transit.station\",\r\n \"elementType\": \"labels.text.fill\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#ffffff\"\r\n }\r\n ]\r\n }\r\n\r\n]","views":334,"createdBy":{"name":"Tony","url":"http://www.2creative.se"},"createdOn":"2014-07-10T02:03:35.28"},{"id":108,"name":"Lemon Tree","description":"A soft map style to sit behind complex graphics without heavily interfering.","url":"http://snazzymaps.com/style/108/lemon-tree","json":"[\r\n\t{\r\n\t\tfeatureType: 'road.highway',\r\n\t\telementType: 'labels',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#ffffff' },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: 100 },\r\n\t\t\t{ visibility: 'off' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'landscape.natural',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#ffffff' },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: 100 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'road',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#ffe94f' },\r\n\t\t\t{ saturation: 100 },\r\n\t\t\t{ lightness: 4 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'road.highway',\r\n\t\telementType: 'geometry',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#ffe94f' },\r\n\t\t\t{ saturation: 100 },\r\n\t\t\t{ lightness: 4 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'water',\r\n\t\telementType: 'geometry',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#333333' },\r\n\t\t\t{ saturation: -100 },\r\n\t\t\t{ lightness: -74 },\r\n\t\t\t{ visibility: 'off' }\r\n\t\t]\r\n\t}\r\n]","views":330,"createdBy":{"name":"Dave Ellis","url":"http://www.novolume.co.uk"},"createdOn":"2014-07-10T02:07:44.617"},{"id":112,"name":"Swiss Cheese","description":"As yummy as Swiss Cheese is, as tasteful you may find this cheesy style. Best viewed with terrain base layer.\r\n\r\nOne of the styles used on https://getmapped.at","url":"http://snazzymaps.com/style/112/swiss-cheese","json":"[{\"stylers\": [{ \"saturation\": 100 }, { \"hue\": \"#fff700\" } ] },{\"featureType\": \"landscape\", \"stylers\": [{ \"color\": \"#ffdd00\" } ] },{\"featureType\": \"water\", \"stylers\": [{ \"color\": \"#718098\" }, { \"saturation\": -35 }, { \"lightness\": 20 } ] },{\"featureType\": \"poi\", \"elementType\": \"labels\", \"stylers\": [{ \"visibility\": \"off\" } ] },{\"featureType\": \"transit\", \"elementType\": \"labels\", \"stylers\": [{ \"visibility\": \"off\" } ] },{\"featureType\": \"administrative\", \"elementType\": \"labels.text\", \"stylers\": [{ \"color\": \"#ffdd00\" }, { \"lightness\": -38 } ] },{\"featureType\": \"administrative\", \"elementType\": \"labels.text.stroke\", \"stylers\": [{ \"color\": \"#ffdd00\" } ] },{\"featureType\": \"road\", \"elementType\": \"labels\", \"stylers\": [{ \"visibility\": \"off\" } ] },{\"featureType\": \"road\", \"stylers\": [{ \"weight\": 0.7 } ] },{\"featureType\": \"water\", \"elementType\": \"labels.text.fill\", \"stylers\": [{ \"color\": \"#ffffff\" } ] } ]","views":319,"createdBy":{"name":"David Schmidt","url":"http://individual8.com"},"createdOn":"2014-07-10T02:10:38.603"},{"id":109,"name":"Beige White and Blue","description":null,"url":"http://snazzymaps.com/style/109/beige-white-and-blue","json":"[\r\n {\r\n \"featureType\": \"landscape.natural\",\r\n \"stylers\": [\r\n { \"visibility\": \"on\" },\r\n { \"color\": \"#ecd5c3\" }\r\n ]\r\n },{\r\n \"featureType\": \"water\",\r\n \"stylers\": [\r\n { \"visibility\": \"on\" },\r\n { \"color\": \"#32c4fe\" }\r\n ]\r\n },{\r\n \"featureType\": \"landscape.natural\",\r\n \"stylers\": [\r\n { \"visibility\": \"simplified\" }\r\n ]\r\n },{\r\n \"featureType\": \"transit\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"poi\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.arterial\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"visibility\": \"on\" },\r\n { \"color\": \"#ffffff\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.arterial\",\r\n \"elementType\": \"geometry.stroke\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.local\",\r\n \"elementType\": \"geometry.stroke\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"landscape.man_made\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.highway.controlled_access\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"color\": \"#baaca2\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.highway\",\r\n \"elementType\": \"geometry.stroke\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.highway.controlled_access\",\r\n \"elementType\": \"labels.text.fill\",\r\n \"stylers\": [\r\n { \"visibility\": \"on\" },\r\n { \"color\": \"#ffffff\" }\r\n ]\r\n },{\r\n \"featureType\": \"road\",\r\n \"elementType\": \"labels.text.fill\",\r\n \"stylers\": [\r\n { \"color\": \"#565757\" },\r\n { \"visibility\": \"on\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.local\",\r\n \"elementType\": \"labels.text.stroke\",\r\n \"stylers\": [\r\n { \"color\": \"#808080\" },\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.arterial\",\r\n \"elementType\": \"labels.text.stroke\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"administrative.neighborhood\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"administrative.locality\",\r\n \"elementType\": \"labels.text.fill\",\r\n \"stylers\": [\r\n { \"visibility\": \"on\" },\r\n { \"color\": \"#535555\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.highway\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n { \"color\": \"#fffffe\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.highway\",\r\n \"elementType\": \"labels.text.stroke\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"road.highway\",\r\n \"elementType\": \"labels.icon\",\r\n \"stylers\": [\r\n { \"visibility\": \"on\" }\r\n ]\r\n },{\r\n \"featureType\": \"road\",\r\n \"elementType\": \"labels.icon\",\r\n \"stylers\": [\r\n { \"visibility\": \"on\" },\r\n { \"saturation\": -100 },\r\n { \"lightness\": 17 }\r\n ]\r\n },{\r\n }\r\n]","views":317,"createdBy":{"name":"Marcin Leskiewicz","url":"http://www.cevana.com/en/contact-us.php"},"createdOn":"2014-07-10T02:09:07.767"},{"id":110,"name":"mikiwat","description":null,"url":"http://snazzymaps.com/style/110/mikiwat","json":"[\r\n {\r\n \"featureType\": \"landscape.natural\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"on\"\r\n },\r\n {\r\n \"color\": \"336d75\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"on\"\r\n },\r\n {\r\n \"hue\": \"#1900ff\"\r\n },\r\n {\r\n \"color\": \"#d064a4\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"landscape.man_made\",\r\n \"elementType\": \"geometry.fill\"\r\n },\r\n {\r\n \"featureType\": \"road\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n {\r\n \"lightness\": 100\r\n },\r\n {\r\n \"visibility\": \"simplified\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road\",\r\n \"elementType\": \"labels\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"water\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#6bb1e1\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"transit.line\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"on\"\r\n },\r\n {\r\n \"lightness\": 700\r\n }\r\n ]\r\n }\r\n]","views":309,"createdBy":{"name":"Anonymous","url":"http://snazzymaps.com"},"createdOn":"2014-07-10T02:09:39.81"},{"id":86,"name":"Nature Highlight","description":"Highlight greens and water over white cities and dark background.","url":"http://snazzymaps.com/style/86/nature-highlight","json":"[\r\n {\r\n \"featureType\": \"administrative\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"administrative.locality\",\r\n \"elementType\": \"labels\",\r\n \"stylers\": [\r\n { \"visibility\": \"simplified\" },\r\n { \"saturation\": 100 },\r\n { \"color\": \"#ff4702\" }\r\n ]\r\n },{\r\n \"featureType\": \"road\",\r\n \"stylers\": [\r\n { \"saturation\": -100 },\r\n { \"visibility\": \"simplified\" },\r\n { \"lightness\": -25 }\r\n ]\r\n },{\r\n \"featureType\": \"water\",\r\n \"stylers\": [\r\n { \"color\": \"#5f1bff\" },\r\n { \"saturation\": 100 },\r\n { \"visibility\": \"on\" },\r\n { \"lightness\": -38 }\r\n ]\r\n },{\r\n \"featureType\": \"landscape.natural.terrain\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"poi\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"poi.park\",\r\n \"stylers\": [\r\n { \"visibility\": \"simplified\" },\r\n { \"color\": \"#d3ff44\" },\r\n { \"lightness\": -32 },\r\n { \"saturation\": 30 }\r\n ]\r\n },{\r\n \"featureType\": \"landscape.natural\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"visibility\": \"on\" },\r\n { \"color\": \"#797679\" },\r\n { \"gamma\": 4.92 },\r\n { \"lightness\": -47 }\r\n ]\r\n },{\r\n }\r\n]","views":307,"createdBy":{"name":"TrinkerMedia","url":"http://trinker.co.uk"},"createdOn":"2014-04-29T21:29:39.55"},{"id":114,"name":"Colorblind-friendly","description":"A stylized map based on the hues of a colorblind-friendly palette.","url":"http://snazzymaps.com/style/114/colorblind-friendly","json":" [\r\n\t{\r\n\t\tfeatureType: 'water',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#0072B2' },\r\n\t\t\t{ saturation: 100 },\r\n\t\t\t{ lightness: -54 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'landscape',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#E69F00' },\r\n\t\t\t{ saturation: 100 },\r\n\t\t\t{ lightness: -49 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'poi',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#D55E00' },\r\n\t\t\t{ saturation: 100 },\r\n\t\t\t{ lightness: -46 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'road.local',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#CC79A7' },\r\n\t\t\t{ saturation: -55 },\r\n\t\t\t{ lightness: -36 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'road.arterial',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#F0E442' },\r\n\t\t\t{ saturation: -15 },\r\n\t\t\t{ lightness: -22 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'road.highway',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#56B4E9' },\r\n\t\t\t{ saturation: -23 },\r\n\t\t\t{ lightness: -2 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'administrative',\r\n\t\telementType: 'geometry',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#000000' },\r\n\t\t\t{ saturation: 0 },\r\n\t\t\t{ lightness: -100 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t},{\r\n\t\tfeatureType: 'transit',\r\n\t\telementType: 'all',\r\n\t\tstylers: [\r\n\t\t\t{ hue: '#009E73' },\r\n\t\t\t{ saturation: 100 },\r\n\t\t\t{ lightness: -59 },\r\n\t\t\t{ visibility: 'on' }\r\n\t\t]\r\n\t}\r\n]","views":270,"createdBy":{"name":"Robert James Liguori","url":"http://gliesians.com"},"createdOn":"2014-07-10T02:12:06.11"},{"id":104,"name":"towalk","description":"Orange minimal style to walk around","url":"http://snazzymaps.com/style/104/towalk","json":"[\r\n {\r\n \"featureType\": \"poi\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n \"featureType\": \"landscape.man_made\",\r\n \"stylers\": [\r\n { \"visibility\": \"off\" },\r\n { \"saturation\": 100 },\r\n { \"lightness\": -17 },\r\n { \"gamma\": 1.18 },\r\n { \"color\": \"#da97ae\" }\r\n ]\r\n },{\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"color\": \"#f07913\" }\r\n ]\r\n },{\r\n \"featureType\": \"road\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n { \"color\": \"#ffffff\" },\r\n { \"weight\": 0.1 }\r\n ]\r\n },{\r\n \"featureType\": \"road\",\r\n \"elementType\": \"geometry.stroke\",\r\n \"stylers\": [\r\n { \"color\": \"#d0f380\" }\r\n ]\r\n },{\r\n \"stylers\": [\r\n { \"weight\": 0.1 }\r\n ]\r\n },{\r\n \"featureType\": \"road\",\r\n \"elementType\": \"labels.text.fill\",\r\n \"stylers\": [\r\n { \"visibility\": \"on\" },\r\n { \"color\": \"#000000\" }\r\n ]\r\n },{\r\n \"featureType\": \"road\",\r\n \"elementType\": \"labels.text.stroke\",\r\n \"stylers\": [\r\n { \"weight\": 1 },\r\n { \"color\": \"#83827f\" },\r\n { \"visibility\": \"off\" }\r\n ]\r\n },{\r\n }\r\n]","views":181,"createdBy":{"name":"cherman","url":"http://www.coreographix.com"},"createdOn":"2014-07-10T02:03:16.66"}]
\ No newline at end of file
diff --git a/web/Theme/style.css b/web/Theme/style.css
index ef070248..c2cf0d63 100644
--- a/web/Theme/style.css
+++ b/web/Theme/style.css
@@ -23,8 +23,8 @@ main {
}
aside {background-color: rgba(32,16,16,0.8);
- padding: 1em; margin: 0.5em;
- border-radius:25px; border: solid 1px #000060;
+ padding: 0.5em; margin: 0.5em;
+ border-radius:5px; border: solid 1px #000060;
float: right;
}
@@ -51,7 +51,7 @@ footer {
justify-content: space-around;
z-index:-1;
}
-.actionlink img { top:4px; }
+
footer img { max-height: 2em; }
a {
@@ -60,12 +60,9 @@ a {
background-color:rgba(0,30,0,0.5);
}
-.actionlink:hover {
- background-color:rgba(30,0,124,0.5);
- border-color: white;
-
+a:hover {
+ text-decoration: underline;
}
-
a:visited {
color: #90B090;
}
@@ -91,6 +88,7 @@ label {
width: 95%;
height: 95%;
}
+
.metablog {
font-style: italic;
font-size: small;
@@ -112,10 +110,7 @@ padding-left: 20px;
.actionlink {
color: #B0B080;
- border: solid .5px;
- right:3px;
- padding: 4px;
- border-radius:25px;
+ border-radius:5px;
background-color:rgba(0,0,32,0.8);
font-size:x-small;
z-index:1;
@@ -123,6 +118,14 @@ padding-left: 20px;
font-family: 'Arial', cursive;
}
+.actionlink img { top:4px; }
+
+.actionlink: hover {
+ background-color:rgba(30,0,124,0.5);
+ border : solid 1px white;
+ text-decoration: underline;
+}
+
.code {
font-family: "monospace";
background-color: rgba(0,0,256,0.1);
diff --git a/web/Views/Blogs/UserPost.aspx b/web/Views/Blogs/UserPost.aspx
index a3ed7d8d..1b45b324 100644
--- a/web/Views/Blogs/UserPost.aspx
+++ b/web/Views/Blogs/UserPost.aspx
@@ -6,7 +6,7 @@