diff options
author | Matthew Somerville <matthew@mysociety.org> | 2011-07-01 11:31:32 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2011-07-01 12:45:22 +0100 |
commit | c6a20311276f00befd27fe0ea7e606db4a13844d (patch) | |
tree | a72eec3c6e1654dac232137ee367c4a622f70a48 /web/js/map-bing-ol.js | |
parent | ca5761ae2542de544f48f6338d7d81f8711d3caf (diff) |
Use our own StreetView tile server, add missing IE6 CSS for OpenLayers, don't set map parameter in JS.
Diffstat (limited to 'web/js/map-bing-ol.js')
-rw-r--r-- | web/js/map-bing-ol.js | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/web/js/map-bing-ol.js b/web/js/map-bing-ol.js index 75bce80d3..406524883 100644 --- a/web/js/map-bing-ol.js +++ b/web/js/map-bing-ol.js @@ -56,9 +56,10 @@ OpenLayers.Layer.Bing = OpenLayers.Class(OpenLayers.Layer.XYZ, { if (z >= 16) { var url = [ - "http://a.os.openstreetmap.org/sv/${z}/${x}/${y}.png", - "http://b.os.openstreetmap.org/sv/${z}/${x}/${y}.png", - "http://c.os.openstreetmap.org/sv/${z}/${x}/${y}.png" + "http://tilma.mysociety.org/sv/${z}/${x}/${y}.png", + "http://a.tilma.mysociety.org/sv/${z}/${x}/${y}.png", + "http://b.tilma.mysociety.org/sv/${z}/${x}/${y}.png", + "http://c.tilma.mysociety.org/sv/${z}/${x}/${y}.png" ]; } else { var url = [ |