X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/5feb99d33300947a0da196257b9ebc30fe708245..88db2c536f0dd8e4c6d9c23753125dae7d16b98b:/vendor/assets/openlayers/OpenStreetMap.js
diff --git a/vendor/assets/openlayers/OpenStreetMap.js b/vendor/assets/openlayers/OpenStreetMap.js
index b1b608751..e722c3a2f 100644
--- a/vendor/assets/openlayers/OpenStreetMap.js
+++ b/vendor/assets/openlayers/OpenStreetMap.js
@@ -1,33 +1,3 @@
-/**
- * Namespace: Util.OSM
- */
-OpenLayers.Util.OSM = {};
-
-/**
- * Constant: MISSING_TILE_URL
- * {String} URL of image to display for missing tiles
- */
-OpenLayers.Util.OSM.MISSING_TILE_URL = OpenLayers.Util.getImagesLocation() + "404.png";
-
-/**
- * Property: originalOnImageLoadError
- * {Function} Original onImageLoadError function.
- */
-OpenLayers.Util.OSM.originalOnImageLoadError = OpenLayers.Util.onImageLoadError;
-
-/**
- * Function: onImageLoadError
- */
-OpenLayers.Util.onImageLoadError = function() {
- if (this.src.match(/^http:\/\/[abc]\.[a-z]+\.openstreetmap\.org\//)) {
- this.src = OpenLayers.Util.OSM.MISSING_TILE_URL;
- } else if (this.src.match(/^http:\/\/[def]\.tah\.openstreetmap\.org\//)) {
- // do nothing - this layer is transparent
- } else {
- OpenLayers.Util.OSM.originalOnImageLoadError;
- }
-};
-
/**
* Class: OpenLayers.Layer.OSM.Mapnik
*
@@ -49,7 +19,8 @@ OpenLayers.Layer.OSM.Mapnik = OpenLayers.Class(OpenLayers.Layer.OSM, {
"http://c.tile.openstreetmap.org/${z}/${x}/${y}.png"
];
options = OpenLayers.Util.extend({
- numZoomLevels: 19,
+ numZoomLevels: 20,
+ attribution: "© OpenStreetMap contributors",
buffer: 0,
transitionEffect: "resize"
}, options);
@@ -82,6 +53,7 @@ OpenLayers.Layer.OSM.CycleMap = OpenLayers.Class(OpenLayers.Layer.OSM, {
];
options = OpenLayers.Util.extend({
numZoomLevels: 19,
+ attribution: "© OpenStreetMap contributors, Tiles courtesy of Andy Allan",
buffer: 0,
transitionEffect: "resize"
}, options);
@@ -114,6 +86,7 @@ OpenLayers.Layer.OSM.TransportMap = OpenLayers.Class(OpenLayers.Layer.OSM, {
];
options = OpenLayers.Util.extend({
numZoomLevels: 19,
+ attribution: "© OpenStreetMap contributors, Tiles courtesy of Andy Allan",
buffer: 0,
transitionEffect: "resize"
}, options);