block by tmcw 4726821

4726821

Full Screen

index.html

<!DOCTYPE html>
<html>
<head>
  <script src='//api.tiles.mapbox.com/mapbox.js/v0.6.7/mapbox.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%; }
  </style>
</head>
<body>
<div id='map'></div>

<script>
  mapbox.auto('map', 'absolutetravel.map-wjhb8xsw', function(map) {
    // set zoom limits
    map.setZoomRange(2, 8);
    // set default zoom level
    map.auto();
    map.eventHandlers[3].remove();
    map.centerzoom({lat: 43.6, lon: -79.4 }, 2);
    map.ui.attribution.add()
      .content('<a href="//mapbox.com/about/maps">Terms &amp; Feedback</a>');
 });
</script>
</body>
</html>