An example of using leaflet.js with multiple tile layers and an overlay.
Last active
September 1, 2018 04:15
-
-
Save d3noob/7845954 to your computer and use it in GitHub Desktop.
Overlay example for leaflet.js
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Simple Leaflet Map</title> | |
<meta charset="utf-8" /> | |
<link | |
rel="stylesheet" | |
href="http://cdn.leafletjs.com/leaflet-0.7/leaflet.css" | |
/> | |
</head> | |
<body> | |
<div id="map" style="width: 600px; height: 400px"></div> | |
<script | |
src="http://cdn.leafletjs.com/leaflet-0.7/leaflet.js"> | |
</script> | |
<script> | |
var coolPlaces = new L.LayerGroup(); | |
L.marker([-41.29042, 174.78219]) | |
.bindPopup('Te Papa').addTo(coolPlaces), | |
L.marker([-41.29437, 174.78405]) | |
.bindPopup('Embassy Theatre').addTo(coolPlaces), | |
L.marker([-41.2895, 174.77803]) | |
.bindPopup('Michael Fowler Centre').addTo(coolPlaces), | |
L.marker([-41.28313, 174.77736]) | |
.bindPopup('Leuven Belgin Beer Cafe').addTo(coolPlaces), | |
L.polyline([ | |
[-41.28313, 174.77736], | |
[-41.2895, 174.77803], | |
[-41.29042, 174.78219], | |
[-41.29437, 174.78405] | |
] | |
).addTo(coolPlaces); | |
var osmLink = '<a href="http://openstreetmap.org">OpenStreetMap</a>', | |
thunLink = '<a href="http://thunderforest.com/">Thunderforest</a>'; | |
var osmUrl = 'http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', | |
osmAttrib = '© ' + osmLink + ' Contributors', | |
landUrl = 'http://{s}.tile.thunderforest.com/landscape/{z}/{x}/{y}.png', | |
thunAttrib = '© '+osmLink+' Contributors & '+thunLink; | |
var osmMap = L.tileLayer(osmUrl, {attribution: osmAttrib}), | |
landMap = L.tileLayer(landUrl, {attribution: thunAttrib}); | |
var map = L.map('map', { | |
layers: [osmMap] // only add one! | |
}) | |
.setView([-41.2858, 174.78682], 14); | |
var baseLayers = { | |
"OSM Mapnik": osmMap, | |
"Landscape": landMap | |
}; | |
var overlays = { | |
"Interesting places": coolPlaces | |
}; | |
L.control.layers(baseLayers,overlays).addTo(map); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Do you know how to add an icon or colour within this box? thanks