Last active
February 1, 2016 13:34
-
-
Save pgiraud/2522b6ed9a5aa4721843 to your computer and use it in GitHub Desktop.
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>Simple Map</title> | |
<link rel="stylesheet" href="http://openlayers.org/en/v3.13.0/css/ol.css" type="text/css"> | |
</head> | |
<body> | |
<div id="map" class="map"></div> | |
<script src="http://openlayers.org/en/v3.13.0/build/ol.js"></script> | |
<script> | |
var map = new ol.Map({ | |
layers: [ | |
new ol.layer.Tile({ | |
source: new ol.source.OSM() | |
}) | |
], | |
target: 'map', | |
view: new ol.View({ | |
center: [0, 0], | |
zoom: 2 | |
}) | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment