block by wboykinm 4331857

4331857

Full Screen

index.html

<!DOCTYPE html>
<html>
<head>
  <script src='//api.tiles.mapbox.com/mapbox.js/v0.6.7/mapbox.js'></script>
  <script src='//code.jquery.com/jquery-1.8.3.min.js'></script>
  <link href='//api.tiles.mapbox.com/mapbox.js/v0.6.7/mapbox.css' rel='stylesheet' />
  <style>
    body { margin:0; padding:0; }
    #map { position:absolute; top:0; bottom:0, width:100%; }
    #switch { position:absolute; top:0; bottom:0; left: 300px width:300px; }
  </style>
</head>
<body>
<div id='map'></div>
<div id='switch'>
    <button data-layer='map.addLayer(mapbox.layer().id('landplanner.map-a0wbwf43'>a</button>
    <button data-layer='landplanner.blackmarble2'>b</button>
    <button data-layer='landplanner.enstrat_dni_101111b'>c</button>
</div>
<script>
var map = mapbox.map('map').zoom(3);;
map.addLayer(mapbox.layer().id('examples.map-vyofok3q'));

$('button').click(function() {
    map.getLayerAt(0).id($(this).data('layer'));
});
</script>
</body>
</html>