This is the basic html template we'll start with. Note that it includes the map container (9) in the body and its style in the head (4-6).
Last active
August 29, 2015 14:13
-
-
Save maptastik/be990b397fcfa82612cf to your computer and use it in GitHub Desktop.
Leaflet Squirrel - Step 0
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
<html> | |
<head> | |
<title>Leaflet Squirrel - Step 0</title> | |
<style> | |
#map{ height: 100% } | |
</style> | |
</head> | |
<body> | |
<div id="map"></div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment