Skip to content

Instantly share code, notes, and snippets.

@wboykinm
Created December 21, 2012 21:52
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 wboykinm/4356081 to your computer and use it in GitHub Desktop.
Save wboykinm/4356081 to your computer and use it in GitHub Desktop.
leaflet.js baselayer switching
<!DOCTYPE html>
<html>
<head>
<title>Leaflet Switching</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="http://geosprocket.com/assets/leaflet/dist/leaflet.css" />
<!--[if lte IE 8]><link rel="stylesheet" href="http://geosprocket.com/assets/leaflet/dist/leaflet.ie.css" /><![endif]-->
<!--<script src="http://geosprocket.com/assets/leaflet/dist/leaflet.js"></script>-->
<script src="http://libs.cartocdn.com/cartodb.js/v2/cartodb.js"></script>
<style>
body {
padding: 0;
margin: 0;
}
html, body, #map {
height: 100%;
}
</style>
</head>
<body>
<div id="map"></div>
<script>
var night = L.tileLayer('http://a.tiles.mapbox.com/v3/landplanner.map-sa4pz9ny/{z}/{x}/{y}.png', {
maxZoom: 18,
attribution: 'Map data &copy; <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, <a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>'
}),
sat = L.tileLayer('http://a.tiles.mapbox.com/v3/landplanner.map-a0wbwf43/{z}/{x}/{y}.png', {
maxZoom: 18,
attribution: 'Map data &copy; <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, <a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>'
});
var map = L.map('map', {
zoomControl: true,
center: [40.04443758460856, -95.09765625],
zoom: 5,
layers: [night, sat]
});
var baseLayers = {
"Night View": night,
"Satellite View": sat
};
L.control.layers(baseLayers).addTo(map);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment