]> git.openstreetmap.org Git - rails.git/commitdiff
Add attribution to the MapQuest layer
authorTom Hughes <tom@compton.nu>
Thu, 24 Nov 2011 22:46:44 +0000 (22:46 +0000)
committerTom Hughes <tom@compton.nu>
Fri, 25 Nov 2011 11:55:38 +0000 (11:55 +0000)
app/assets/javascripts/map.js.erb
app/assets/stylesheets/common.css.scss

index 0dfb7e31f127dde1b80ddcb4c912fd9b07c0634a..b45e6b7b52c9c76eea44529c4422c2d2568656a4 100644 (file)
@@ -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 <a href='http://www.mapquest.com/' target='_blank'>MapQuest</a> <img src='http://developer.mapquest.com/content/osm/mq_logo.png'>",
       keyid: "mapquest",
       displayOutsideMaxExtent: true,
       wrapDateLine: true,
index d8992b637f5d7ea0ce8bd4965c8685a26684c9d3..04247ac8bc0fd61331b8dbd312d49b0f0cfa1302 100644 (file)
@@ -344,7 +344,10 @@ hr {
 }
 
 .olControlAttribution {
-  display: none !important;
+  bottom: 15px !important;
+  left: 0px !important;
+  right: 0px !important;
+  text-align: center;
 }
 
 #permalink {