Skip to content

Instantly share code, notes, and snippets.

@tmcw
Created November 21, 2013 15:52
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 tmcw/7584131 to your computer and use it in GitHub Desktop.
Save tmcw/7584131 to your computer and use it in GitHub Desktop.
<html>
<head>
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no' />
<link rel='stylesheet' href='http://cdn.leafletjs.com/leaflet-0.6/leaflet.css' />
<link href='//api.tiles.mapbox.com/mapbox.js/v1.4.2/mapbox.standalone.css' rel='stylesheet' />
<script src='http://cdn.leafletjs.com/leaflet-0.6/leaflet.js'></script>
<script src='//api.tiles.mapbox.com/mapbox.js/v1.4.2/mapbox.standalone.js'></script>
<style>#map { width:600px; height:400px; }</style>
</head>
<body>
<div id='map' class='dark'></div>
<script>
var map = L.mapbox.map('map', 'examples.map-y7l23tes')
.setView([37.9, -77], 5);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment