]> git.openstreetmap.org Git - rails.git/commitdiff
Update leaflet-osm
authorJohn Firebaugh <john.firebaugh@gmail.com>
Mon, 15 Oct 2012 23:47:44 +0000 (16:47 -0700)
committerJohn Firebaugh <john.firebaugh@gmail.com>
Fri, 9 Nov 2012 20:59:28 +0000 (12:59 -0800)
app/assets/javascripts/index/browse.js
app/assets/javascripts/map.js.erb
vendor/assets/leaflet/leaflet.osm.js

index 6bba3edf3f59a49d7a65b90993ab5d58b7e77200..e151a2dc3425027addab144ddbce83eed09753c6 100644 (file)
@@ -18,7 +18,7 @@ $(document).ready(function () {
     var browseObjectList;
     var areasHidden = false;
 
-    var dataLayer = new L.OSM(null, {
+    var dataLayer = new L.OSM.DataLayer(null, {
       styles: {
         way: {
           weight: 3,
@@ -38,7 +38,7 @@ $(document).ready(function () {
     dataLayer.addTo(map);
 
     dataLayer.isWayArea = function () {
-      return !areasHidden && L.OSM.prototype.isWayArea.apply(this, arguments);
+      return !areasHidden && L.OSM.DataLayer.prototype.isWayArea.apply(this, arguments);
     };
 
     var drawHandler = new L.Rectangle.Draw(map, {title: I18n.t('browse.start_rjs.drag_a_box')});
index 2e72046d1e677e38af0357b68004db74b1f5378d..e163ef265b1524f2439115ddb05eed44df094cda 100644 (file)
@@ -131,7 +131,7 @@ function addObjectToMap(object, zoom, callback) {
     url: OSM.apiUrl(object),
     dataType: "xml",
     success: function (xml) {
-      var layer = new L.OSM(xml, {
+      var layer = new L.OSM.DataLayer(xml, {
         style: {
           strokeColor: "blue",
           strokeWidth: 3,
index 66879d1ddb01d1c145c926f86664018c2e0fc577..55b27e7cff5cdc70dcde58eebad047b5ecc69e72 100644 (file)
@@ -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: '© <a target="_parent" href="http://www.openstreetmap.org">OpenStreetMap</a> and contributors, under an <a target="_parent" href="http://www.openstreetmap.org/copyright">open license</a>'
+  },
+
+  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 <a href='http://www.mapquest.com/' target='_blank'>MapQuest</a> <img src='http://developer.mapquest.com/content/osm/mq_logo.png'>"
+  }
+});
+
+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'],