X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/30ad58c01ff8acae377cfd974fcc94d6898722da..fe6e837cfe77e1414998c0216defe7912e34bf75:/vendor/assets/leaflet/leaflet.osm.js diff --git a/vendor/assets/leaflet/leaflet.osm.js b/vendor/assets/leaflet/leaflet.osm.js index 66879d1dd..55b27e7cf 100644 --- a/vendor/assets/leaflet/leaflet.osm.js +++ b/vendor/assets/leaflet/leaflet.osm.js @@ -1,4 +1,44 @@ -L.OSM = L.FeatureGroup.extend({ +L.OSM = {}; + +L.OSM.TileLayer = L.TileLayer.extend({ + options: { + url: 'http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', + attribution: '© OpenStreetMap and contributors, under an open license' + }, + + initialize: function (options) { + options = L.Util.setOptions(this, options); + L.TileLayer.prototype.initialize.call(this, options.url); + } +}); + +L.OSM.Mapnik = L.OSM.TileLayer.extend({ + options: { + url: 'http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png' + } +}); + +L.OSM.CycleMap = L.OSM.TileLayer.extend({ + options: { + url: 'http://{s}.tile.opencyclemap.org/cycle/{z}/{x}/{y}.png' + } +}); + +L.OSM.TransportMap = L.OSM.TileLayer.extend({ + options: { + url: 'http://{s}.tile2.opencyclemap.org/transport/{z}/{x}/{y}.png' + } +}); + +L.OSM.MapQuestOpen = L.OSM.TileLayer.extend({ + options: { + url: 'http://otile{s}.mqcdn.com/tiles/1.0.0/osm/{z}/{x}/{y}.png', + subdomains: '1234', + attribution: "Tiles courtesy of MapQuest " + } +}); + +L.OSM.DataLayer = L.FeatureGroup.extend({ options: { areaTags: ['area', 'building', 'leisure', 'tourism', 'ruins', 'historic', 'landuse', 'military', 'natural', 'sport'], uninterestingTags: ['source', 'source_ref', 'source:ref', 'history', 'attribution', 'created_by', 'tiger:county', 'tiger:tlid', 'tiger:upload_uuid'],