X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/88105d9c643519e02082ba9cc5044bb0dfdcb7b9..45a9d9433767938a9d313f745f9459400132704a:/public/javascripts/map.js diff --git a/public/javascripts/map.js b/public/javascripts/map.js index 2bdba6229..c2ddf9c39 100644 --- a/public/javascripts/map.js +++ b/public/javascripts/map.js @@ -3,7 +3,18 @@ var map; var markers; var popup; +var nonamekeys = { + 'openstreetmap.org': '2f59745a6b525b4ebdb100891d5b6711', + 'www.openstreetmap.org': 'fd093e52f0965d46bb1c6c6281022199', + 'openstreetmap.com': '4c60e7f5f31c576a9bb8da71c8d61152', + 'www.openstreetmap.com': '142f25a0770a51a9a400b3513834a199', + 'openstreetmap.net': '687c58fd1d715596bfc94abe653d8ac0', + 'www.openstreetmap.net': '0bd1654141c85d30b9c2ccdb5302f2e4' +}; + OpenLayers._getScriptLocation = function () { + // Should really have this file as an erb, so that this can return + // the real rails root return "/openlayers/"; } @@ -42,6 +53,18 @@ function createMap(divName, options) { }); map.addLayer(cyclemap); + var nonamekey = nonamekeys[document.domain]; + var noname = new OpenLayers.Layer.OSM("NoName", [ + "http://a.tile.cloudmade.com/" + nonamekey + "/3/256/", + "http://b.tile.cloudmade.com/" + nonamekey + "/3/256/", + "http://c.tile.cloudmade.com/" + nonamekey + "/3/256/" + ], { + displayOutsideMaxExtent: true, + wrapDateLine: true, + numZoomLevels: 19 + }); + map.addLayer(noname); + var maplint = new OpenLayers.Layer.OSM.Maplint("Maplint", { displayOutsideMaxExtent: true, wrapDateLine: true @@ -157,7 +180,11 @@ function setMapLayers(layerConfig) { for (var layers = map.getLayersBy("isBaseLayer", false), i = 0; i < layers.length; i++) { var c = layerConfig.charAt(l++); - layers[i].setVisibility(c == "T"); + if (c == "T") { + layers[i].setVisibility(true); + } else if(c == "F") { + layers[i].setVisibility(false); + } } }