X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/d1c900901939c1d168ba31f40ea688ff41521dfa..168a9fc3272777fa7ab533e936715525376f8ebf:/app/assets/javascripts/map.js.erb diff --git a/app/assets/javascripts/map.js.erb b/app/assets/javascripts/map.js.erb index bb1c9a358..8b621e3ae 100644 --- a/app/assets/javascripts/map.js.erb +++ b/app/assets/javascripts/map.js.erb @@ -1,31 +1,5 @@ // Leaflet extensions L.extend(L.LatLngBounds.prototype, { - getSouthLat: function () { - return this._southWest.lat; - }, - - getWestLng: function () { - return this._southWest.lng; - }, - - getNorthLat: function () { - return this._northEast.lat; - }, - - getEastLng: function () { - return this._northEast.lng; - }, - - toBBOX: function () { - var decimal = 6; - var mult = Math.pow(10, decimal); - var xmin = Math.round(this.getWestLng() * mult) / mult; - var ymin = Math.round(this.getSouthLat() * mult) / mult; - var xmax = Math.round(this.getEastLng() * mult) / mult; - var ymax = Math.round(this.getNorthLat() * mult) / mult; - return xmin + "," + ymin + "," + xmax + "," + ymax; - }, - getSize: function () { return (this._northEast.lat - this._southWest.lat) * (this._northEast.lng - this._southWest.lng); @@ -36,16 +10,6 @@ L.extend(L.LatLngBounds.prototype, { } }); -L.extend(L.Bounds.prototype, { - getWidth: function () { - return this.max.x - this.min.x; - }, - - getHeight: function () { - return this.max.y - this.min.y; - } -}); - L.Icon.Default.imagePath = <%= "#{asset_prefix}/images".to_json %>; var map;