X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/3d4b2176ff040b9b79b05873579ab54a69a731ec..10df3d85651e7f843ffc6d2b89f029d47dcd1971:/public/export/embed.html?ds=sidebyside
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) {