Last active
August 29, 2015 13:58
-
-
Save benbrignell/10372277 to your computer and use it in GitHub Desktop.
Web designer import.io map app code snippet
This file contains hidden or 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
| <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