X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/5feb99d33300947a0da196257b9ebc30fe708245..cec2253b82b3a3861e8e5875f256d6ec10835160:/vendor/assets/openlayers/OpenStreetMap.js diff --git a/vendor/assets/openlayers/OpenStreetMap.js b/vendor/assets/openlayers/OpenStreetMap.js index b1b608751..b09b14ef5 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 * @@ -50,6 +20,7 @@ OpenLayers.Layer.OSM.Mapnik = OpenLayers.Class(OpenLayers.Layer.OSM, { ]; options = OpenLayers.Util.extend({ numZoomLevels: 19, + 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);