From 9c10e6703e6945c4737c6b7682c6f1d606453294 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Thu, 24 Nov 2011 22:46:44 +0000 Subject: [PATCH] Add attribution to the MapQuest layer --- app/assets/javascripts/map.js.erb | 5 +++++ app/assets/stylesheets/common.css.scss | 5 ++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/app/assets/javascripts/map.js.erb b/app/assets/javascripts/map.js.erb index 0dfb7e31f..b45e6b7b5 100644 --- a/app/assets/javascripts/map.js.erb +++ b/app/assets/javascripts/map.js.erb @@ -24,6 +24,7 @@ function createMap(divName, options) { }); var mapnik = new OpenLayers.Layer.OSM.Mapnik(i18n("javascripts.map.base.mapnik"), { + attribution: "", keyid: "mapnik", displayOutsideMaxExtent: true, wrapDateLine: true, @@ -32,6 +33,7 @@ function createMap(divName, options) { map.addLayer(mapnik); var osmarender = new OpenLayers.Layer.OSM.Osmarender(i18n("javascripts.map.base.osmarender"), { + attribution: "", keyid: "osmarender", displayOutsideMaxExtent: true, wrapDateLine: true, @@ -40,6 +42,7 @@ function createMap(divName, options) { map.addLayer(osmarender); var cyclemap = new OpenLayers.Layer.OSM.CycleMap(i18n("javascripts.map.base.cycle_map"), { + attribution: "", keyid: "cyclemap", displayOutsideMaxExtent: true, wrapDateLine: true, @@ -48,6 +51,7 @@ function createMap(divName, options) { map.addLayer(cyclemap); var transportmap = new OpenLayers.Layer.OSM.TransportMap(i18n("javascripts.map.base.transport_map"), { + attribution: "", keyid: "transportmap", displayOutsideMaxExtent: true, wrapDateLine: true, @@ -61,6 +65,7 @@ function createMap(divName, options) { "http://otile3.mqcdn.com/tiles/1.0.0/osm/${z}/${x}/${y}.png", "http://otile4.mqcdn.com/tiles/1.0.0/osm/${z}/${x}/${y}.png" ], { + attribution: "Tiles courtesy of MapQuest ", keyid: "mapquest", displayOutsideMaxExtent: true, wrapDateLine: true, diff --git a/app/assets/stylesheets/common.css.scss b/app/assets/stylesheets/common.css.scss index d8992b637..04247ac8b 100644 --- a/app/assets/stylesheets/common.css.scss +++ b/app/assets/stylesheets/common.css.scss @@ -344,7 +344,10 @@ hr { } .olControlAttribution { - display: none !important; + bottom: 15px !important; + left: 0px !important; + right: 0px !important; + text-align: center; } #permalink { -- 2.43.2