From 232337c08b129e1ddacdab9c4c9d4cf473a6babb Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Sun, 15 Aug 2010 17:35:08 +0100 Subject: [PATCH] Update cyclemap layer to use new tile server --- public/openlayers/OpenStreetMap.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/public/openlayers/OpenStreetMap.js b/public/openlayers/OpenStreetMap.js index 53094d8da..ce713e4b6 100644 --- a/public/openlayers/OpenStreetMap.js +++ b/public/openlayers/OpenStreetMap.js @@ -100,9 +100,9 @@ OpenLayers.Layer.OSM.CycleMap = OpenLayers.Class(OpenLayers.Layer.OSM, { */ initialize: function(name, options) { var url = [ - "http://a.andy.sandbox.cloudmade.com/tiles/cycle/${z}/${x}/${y}.png", - "http://b.andy.sandbox.cloudmade.com/tiles/cycle/${z}/${x}/${y}.png", - "http://c.andy.sandbox.cloudmade.com/tiles/cycle/${z}/${x}/${y}.png" + "http://a.tile.opencyclemap.org/cycle/${z}/${x}/${y}.png", + "http://b.tile.opencyclemap.org/cycle/${z}/${x}/${y}.png", + "http://c.tile.opencyclemap.org/cycle/${z}/${x}/${y}.png" ]; options = OpenLayers.Util.extend({ numZoomLevels: 19, buffer: 0 }, options); var newArguments = [name, url, options]; -- 2.43.2