Skip to content

Instantly share code, notes, and snippets.

@benbrignell
Last active August 29, 2015 13:58
Show Gist options
  • Select an option

  • Save benbrignell/10372277 to your computer and use it in GitHub Desktop.

Select an option

Save benbrignell/10372277 to your computer and use it in GitHub Desktop.
Web designer import.io map app code snippet
<head>
<meta charset="utf-8">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no' />
<script src='https://api.tiles.mapbox.com/mapbox.js/v1.6.2/mapbox.js'></script>
<link href='https://api.tiles.mapbox.com/mapbox.js/v1.6.2/mapbox.css' rel='stylesheet' />
</head>
<body>
<div id='map'></div>
<script>
var map = L.mapbox.map('map', 'your_mapbox_id_here')
</script>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment