Last active
August 29, 2015 13:55
-
-
Save tyrasd/8714217 to your computer and use it in GitHub Desktop.
2014 Sochi Olympics ski venues in the Krasnaya Polyana mountain cluster
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>2014 Sochi Olympics ski venues in the Krasnaya Polyana mountain cluster</title> | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<!--leaflet--> | |
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.2/leaflet.css" /> | |
<script src="http://cdn.leafletjs.com/leaflet-0.7.2/leaflet.js"></script> | |
</head> | |
<body> | |
<div id="map" style="position:absolute; top:0;left:0;bottom:0;right:0;"></div> | |
<script> | |
var map = L.map('map', {maxZoom: 15}).setView([43.663,40.278], 13); | |
map.attributionControl.addAttribution('data © <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'); | |
L.tileLayer('http://tile.opentopomap.org/{z}/{x}/{y}.png', { | |
attribution: 'basemap © <a href="https://opentopomap.org/">www.opentopomap.org</a> <a href="https://creativecommons.org/licenses/by-sa/3.0/">CC-BY-SA 3.0</a>' | |
}).setOpacity(0.7).addTo(map); | |
L.tileLayer('http://tiles.opensnowmap.org/tiles-pistes/{z}/{x}/{y}.png', { | |
attribution: 'pistes © <a href="http://www.opensnowmap.org/iframes/data.html">www.opensnowmap.org</a> CC-BY-SA' | |
}).addTo(map); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment