Add the cycle map to the main site.

This commit is contained in:
Tom Hughes 2008-05-19 09:57:58 +00:00
parent a401b59242
commit 0623e88d39
3 changed files with 42 additions and 1 deletions

View file

@ -37,13 +37,20 @@
attribution: attribution
});
map.addLayer(mapnik);
} else {
} else if (args.layer == "osmarender") {
var osmarender = new OpenLayers.Layer.OSM.Osmarender("Osmarender", {
displayOutsideMaxExtent: true,
wrapDateLine: true,
attribution: attribution
});
map.addLayer(osmarender);
} else if (args.layer == "cycle map") {
var cyclemap = new OpenLayers.Layer.OSM.CycleMap("Cycle Map", {
displayOutsideMaxExtent: true,
wrapDateLine: true,
attribution: attribution
});
map.addLayer(cyclemap);
}
if (args.marker) {