Skip to content

Instantly share code, notes, and snippets.

@tristen
Created September 8, 2014 14:47
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 tristen/930265179be1d8942528 to your computer and use it in GitHub Desktop.
Save tristen/930265179be1d8942528 to your computer and use it in GitHub Desktop.
Leaflet Control with a layer using gridControl
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>Leaflet Control with a layer using gridControl</title>
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<script src='https://api.tiles.mapbox.com/mapbox.js/v2.0.1/mapbox.js'></script>
<link href='https://api.tiles.mapbox.com/mapbox.js/v2.0.1/mapbox.css' rel='stylesheet' />
<style>
body { margin:0; padding:0; }
#map { position:absolute; top:0; bottom:0; width:100%; }
</style>
</head>
<body>
<div id='map'></div>
<script>
L.mapbox.accessToken = 'pk.eyJ1IjoiZmFsbHNlbW8yIiwiYSI6IjhsbHFBMkEifQ.OMXud5BW3OAF-_usSJjy0Q';
var map = L.map('map').setView([38,-77], 4);
var gridLayer = L.mapbox.gridLayer('examples.map-8ced9urs').addTo(map);
var gridControl = L.mapbox.gridControl(gridLayer).addTo(map);
L.control.layers({
'Base map': L.mapbox.tileLayer('examples.map-i86nkdio').addTo(map)
.on('load', function() {
map.removeControl(gridControl);
}),
'TileMIll interactivity': L.mapbox.tileLayer('examples.map-8ced9urs')
.on('load', function() {
map.addControl(gridControl);
})
}).addTo(map);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment