Created
November 14, 2014 20:30
-
-
Save vschmidt94/4f1e97dd1860bcdab14a to your computer and use it in GitHub Desktop.
JS File to add Leaflet Map to HTML div
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
| var map1 = L.map('map1').setView([44.55957, -123.28141355887], 13); | |
| L.tileLayer('http://{s}.tiles.mapbox.com/v3/YOUR_MAP_ID_HERE/{z}/{x}/{y}.png', | |
| { | |
| attribution: 'Map data © <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, <a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>, Imagery © <a href="http://mapbox.com">Mapbox</a>', | |
| maxZoom: 18 | |
| }).addTo(map1); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment