]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/embed.js.erb
Add report a problem link to attribution, code nicked from osm.ch
[rails.git] / app / assets / javascripts / embed.js.erb
index 57572ca48ff31dee1cd998d5312c6886443f37fb..03c43d386316015dbbcf6e5458e07bb87bd0aab5 100644 (file)
@@ -5,28 +5,30 @@ window.onload = function () {
   var query = (window.location.search || '?').substr(1),
       args  = {};
 
-  query.replace(/([^&=]+)=?([^&]*)(?:&+|$)/g, function(match, key, value) {
-    value = value.split(",");
-    if (value.length == 1)
-      value = value[0];
-    args[key] = value;
-  });
+  var pairs = query.split('&');
+  for (var i = 0; i < pairs.length; i++) {
+    var parts = pairs[i].split('=');
+    args[parts[0]] = decodeURIComponent(parts[1] || '');
+  }
 
   var map = L.map("map");
   map.attributionControl.setPrefix('');
+  map.removeControl(map.attributionControl);
 
-  if (!args.layer || args.layer == "mapnik" || args.layer == "osmarender") {
+  if (!args.layer || args.layer === "mapnik" || args.layer === "osmarender") {
     new L.OSM.Mapnik().addTo(map);
-  } else if (args.layer == "cyclemap" || args.layer == "cycle map") {
+  } else if (args.layer === "cyclemap" || args.layer === "cycle map") {
     new L.OSM.CycleMap().addTo(map);
-  } else if (args.layer == "transportmap") {
+  } else if (args.layer === "transportmap") {
     new L.OSM.TransportMap().addTo(map);
-  } else if (args.layer == "mapquest") {
+  } else if (args.layer === "mapquest") {
     new L.OSM.MapQuestOpen().addTo(map);
+  } else if (args.layer === "hot") {
+    new L.OSM.HOT().addTo(map);
   }
 
   if (args.marker) {
-    L.marker(args.marker, {icon: L.icon({
+    L.marker(args.marker.split(','), {icon: L.icon({
       iconUrl: <%= asset_path('images/marker-icon.png').to_json %>,
       iconSize: new L.Point(25, 41),
       iconAnchor: new L.Point(12, 41),
@@ -36,9 +38,71 @@ window.onload = function () {
   }
 
   if (args.bbox) {
-    map.fitBounds([L.latLng(args.bbox[1], args.bbox[0]),
-                   L.latLng(args.bbox[3], args.bbox[2])])
+    var bbox = args.bbox.split(',');
+    map.fitBounds([L.latLng(bbox[1], bbox[0]),
+                   L.latLng(bbox[3], bbox[2])]);
   } else {
     map.fitWorld();
   }
+  (new L.Control.OSMReportAProblem({})).addTo(map);
 };
+
+L.Control.OSMReportAProblem = L.Control.Attribution.extend({
+        options: {
+                position: 'bottomright',
+                prefix: '<a href="http://www.openstreetmap.org/fixthemap?lat={x}&lon={y}&zoom={z}">Report a problem</a>'
+        },
+        _layerAdd: function(e)
+        {
+               if (e.layer.getAttribution) {
+                        this.addAttribution(e.layer.getAttribution());
+               }
+        },
+        _layerRemove: function(e)
+        {
+               if (e.layer.getAttribution) {
+                        this.removeAttribution(e.layer.getAttribution());
+                }
+        },
+        onAdd: function (map) {
+                this._container = L.DomUtil.create('div', 'leaflet-control-attribution');
+                L.DomEvent.disableClickPropagation(this._container);
+
+                // TODO ugly, refactor
+                for (var i in map._layers) {
+                        if (map._layers[i].getAttribution) {
+                                this.addAttribution(map._layers[i].getAttribution());
+                        }
+                }
+
+                this._update();
+                map.on('moveend', this._update, this);
+                map.on('layeradd', this._layerAdd, this);
+                map.on('layerremove', this._layerRemove, this);
+
+                return this._container;
+        },
+        _update: function () {
+                if (!this._map) { return; }
+
+                var attribs = [];
+
+                for (var i in this._attributions) {
+                        if (this._attributions[i]) {
+                                attribs.push(i);
+                        }
+                }
+
+                var prefixAndAttribs = [];
+
+                if (this.options.prefix) {
+                        prefixAndAttribs.push(this.options.prefix);
+                }
+                if (attribs.length) {
+                        prefixAndAttribs.push(attribs.join(', '));
+                }
+
+                this._container.innerHTML = prefixAndAttribs.join(' | ').replace('{x}', this._map.getCenter().lat).replace('{y}', this._map.getCenter().lng).replace('{z}', this._map.getZoom());
+        }
+
+    });