block by burritojustice 75fdda407b4ce6f519d9cb1608957605

75fdda407b4ce6f519d9

Full Screen

index.html

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8"/>
    <meta name="viewport" content="width=device-width, initial-scale=1"/>
    <link rel="stylesheet" href="https://mapzen.com/js/mapzen.css">
    <script src="https://mapzen.com/js/mapzen.min.js"></script>
  </head>
  <body>
    <div id="map"></div>
    <script>
      // Add a map to the #map DIV, and center it on New York:
      var map = L.Mapzen.map('map', {
  scene: "scene.yaml"
});
      // Set default view on New York at zoom level 13
      map.setView([40.70531, -74.009], 17);
    </script>
  </body>
</html>