]> git.openstreetmap.org Git - rails.git/commitdiff
Simplify "report a problem" control
authorTom Hughes <tom@compton.nu>
Fri, 17 Jul 2015 21:19:49 +0000 (22:19 +0100)
committerTom Hughes <tom@compton.nu>
Fri, 17 Jul 2015 21:19:49 +0000 (22:19 +0100)
Defer to the standard attribution control methods as much as
possible instead of duplicating them.

app/assets/javascripts/embed.js.erb

index 03c43d386316015dbbcf6e5458e07bb87bd0aab5..d5231fea450ad255ec93e9d11efb6d84b5755a73 100644 (file)
@@ -44,65 +44,31 @@ window.onload = function () {
   } else {
     map.fitWorld();
   }
-  (new L.Control.OSMReportAProblem({})).addTo(map);
+
+  map.addControl(new L.Control.OSMReportAProblem());
 };
 
 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);
+  options: {
+    position: 'bottomright',
+    prefix: '<a href="http://www.openstreetmap.org/fixthemap#{z}/{x}/{y}">Report a problem</a>'
+  },
 
-                return this._container;
-        },
-        _update: function () {
-                if (!this._map) { return; }
+  onAdd: function (map) {
+    var container = L.Control.Attribution.prototype.onAdd.call(this, map);
 
-                var attribs = [];
+    map.on('moveend', this._update, this);
 
-                for (var i in this._attributions) {
-                        if (this._attributions[i]) {
-                                attribs.push(i);
-                        }
-                }
+    return container;
+  },
 
-                var prefixAndAttribs = [];
+  _update: function () {
+    L.Control.Attribution.prototype._update.call(this);
 
-                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());
-        }
-
-    });
+    this._container.innerHTML =
+      this._container.innerHTML
+        .replace('{x}', this._map.getCenter().lat)
+        .replace('{y}', this._map.getCenter().lng)
+        .replace('{z}', this._map.getZoom());
+  }
+});