From: Tom Hughes Date: Mon, 12 Mar 2012 22:43:39 +0000 (+0000) Subject: Add the transport and MaqQuest layers to the embed page X-Git-Tag: live~5737 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/10df3d85651e7f843ffc6d2b89f029d47dcd1971?ds=inline Add the transport and MaqQuest layers to the embed page --- 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) {