X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/9c10e6703e6945c4737c6b7682c6f1d606453294..ce4a6eefa7405a3d23f722c987f0e22b966defc8:/app/assets/javascripts/map.js.erb
diff --git a/app/assets/javascripts/map.js.erb b/app/assets/javascripts/map.js.erb
index b45e6b7b5..acfa10822 100644
--- a/app/assets/javascripts/map.js.erb
+++ b/app/assets/javascripts/map.js.erb
@@ -20,7 +20,8 @@ function createMap(divName, options) {
units: "m",
maxResolution: 156543.0339,
numZoomLevels: 20,
- displayProjection: new OpenLayers.Projection("EPSG:4326")
+ displayProjection: new OpenLayers.Projection("EPSG:4326"),
+ theme: "<%= asset_path 'theme/default/style.css' %>"
});
var mapnik = new OpenLayers.Layer.OSM.Mapnik(i18n("javascripts.map.base.mapnik"), {
@@ -42,7 +43,7 @@ function createMap(divName, options) {
map.addLayer(osmarender);
var cyclemap = new OpenLayers.Layer.OSM.CycleMap(i18n("javascripts.map.base.cycle_map"), {
- attribution: "",
+ attribution: "Tiles courtesy of Andy Allan",
keyid: "cyclemap",
displayOutsideMaxExtent: true,
wrapDateLine: true,
@@ -51,7 +52,7 @@ function createMap(divName, options) {
map.addLayer(cyclemap);
var transportmap = new OpenLayers.Layer.OSM.TransportMap(i18n("javascripts.map.base.transport_map"), {
- attribution: "",
+ attribution: "Tiles courtesy of Andy Allan",
keyid: "transportmap",
displayOutsideMaxExtent: true,
wrapDateLine: true,
@@ -268,7 +269,7 @@ function setMapLayers(layerConfig) {
} else {
map.layers[i].setVisibility(true);
}
- } else {
+ } else if (!map.layers[i].isBaseLayer) {
map.layers[i].setVisibility(false);
}
}