From 10df3d85651e7f843ffc6d2b89f029d47dcd1971 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Mon, 12 Mar 2012 22:43:39 +0000 Subject: [PATCH] Add the transport and MaqQuest layers to the embed page --- public/export/embed.html | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/public/export/embed.html b/public/export/embed.html index 43678db03..7e61728cc 100644 --- a/public/export/embed.html +++ b/public/export/embed.html @@ -63,6 +63,24 @@ attribution: attribution }); map.addLayer(cyclemap); + } else if (args.layer == "transportmap") { + var transportmap = new OpenLayers.Layer.OSM.TransportMap("Transport Map", { + displayOutsideMaxExtent: true, + wrapDateLine: true, + attribution: attribution + }); + map.addLayer(transportmap); + } else if (args.layer == "mapquest") { + var mapquestmap = new OpenLayers.Layer.OSM("MapQuest Open Map", [ + "http://otile1.mqcdn.com/tiles/1.0.0/osm/${z}/${x}/${y}.png", + "http://otile2.mqcdn.com/tiles/1.0.0/osm/${z}/${x}/${y}.png", + "http://otile3.mqcdn.com/tiles/1.0.0/osm/${z}/${x}/${y}.png", + "http://otile4.mqcdn.com/tiles/1.0.0/osm/${z}/${x}/${y}.png"], { + displayOutsideMaxExtent: true, + wrapDateLine: true, + attribution: "Tiles courtesy of MapQuest ", + }); + map.addLayer(mapquestmap); } if (args.marker) { -- 2.43.2