Skip to content

Instantly share code, notes, and snippets.

@maptastik
Last active August 29, 2015 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maptastik/be990b397fcfa82612cf to your computer and use it in GitHub Desktop.
Save maptastik/be990b397fcfa82612cf to your computer and use it in GitHub Desktop.
Leaflet Squirrel - Step 0

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).

<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