X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/33aa0a6e454fb2d43b8ccc07395abf0864d47b66..5ac731a3fc426e83da404788d42927438fe7017d:/app/assets/javascripts/map.js.erb diff --git a/app/assets/javascripts/map.js.erb b/app/assets/javascripts/map.js.erb index 70801306b..98299070d 100644 --- a/app/assets/javascripts/map.js.erb +++ b/app/assets/javascripts/map.js.erb @@ -1,20 +1,3 @@ -// Leaflet extensions -L.extend(L.LatLngBounds.prototype, { - getSize: function () { - return (this._northEast.lat - this._southWest.lat) * - (this._northEast.lng - this._southWest.lng); - }, - - wrap: function () { - return new L.LatLngBounds(this._southWest.wrap(), this._northEast.wrap()); - } -}); - -L.Icon.Default.imagePath = <%= "#{asset_prefix}/images".to_json %>; - -var objectLayer; -var objectLoader; - function getUserIcon(url) { return L.icon({ iconUrl: url || <%= asset_path('marker-red.png').to_json %>, @@ -25,41 +8,3 @@ function getUserIcon(url) { shadowSize: [41, 41] }); } - -function addObjectToMap(object, map, options) { - if (objectLoader) objectLoader.abort(); - if (objectLayer) map.removeLayer(objectLayer); - - objectLoader = $.ajax({ - url: OSM.apiUrl(object), - dataType: "xml", - success: function (xml) { - objectLayer = new L.OSM.DataLayer(null, { - styles: { - node: options.style, - way: options.style, - area: options.style - } - }); - - objectLayer.interestingNode = function (node, ways, relations) { - if (object.type === "node") { - return true; - } else if (object.type === "relation") { - for (var i = 0; i < relations.length; i++) - if (relations[i].members.indexOf(node) != -1) - return true; - } else { - return false; - } - }; - - objectLayer.addData(xml); - - if (options.zoom) map.fitBounds(objectLayer.getBounds()); - if (options.callback) options.callback(objectLayer.getBounds()); - - objectLayer.addTo(map); - } - }); -}