Skip to content

Instantly share code, notes, and snippets.

@bsudekum
Forked from lxbarth/index.html
Last active August 29, 2015 14:01
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 bsudekum/007ed988fbda182f8ca5 to your computer and use it in GitHub Desktop.
Save bsudekum/007ed988fbda182f8ca5 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link href='http://api.tiles.mapbox.com/mapbox.js/v1.6.2/mapbox.css' rel='stylesheet' />
<script src='http://api.tiles.mapbox.com/mapbox.js/v1.6.2/mapbox.js'></script>
<script src='http://code.jquery.com/jquery-1.11.1.min.js'></script>
<style>
body {padding: 0; margin: 0;}
#map { position:absolute; top:0; bottom:0; width:100%; }
</style>
</head>
<body>
<div id='map'>
</div>
<script>
var map = L.mapbox.map('map','bobbysud.rc2z9f6r',{
infoControl: { editLink: true },
maxZoom: 20
})
.setView([39.2010,-77.4966], 17)
$('.mapbox-control-info').addClass('active')
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment