block by almccon 93ca21db80deeb9ca0bed42427ef99b5

Tangram 1 minute map

Full Screen

Based on https://mapzen.com/blog/one-minute-map/

Built with blockbuilder.org

index.html

<!DOCTYPE html>
  <html lang="en">
    <head>
      <title>One Minute Map</title>
      <meta charset="utf-8">
      <link rel="stylesheet" href="https://mapzen.com/js/mapzen.css">
      <script src="https://mapzen.com/js/mapzen.min.js"></script>
      <style>
        #map {
          height: 100%;
          width: 100%;
          position: absolute;
        }
      html,body{margin: 0; padding: 0}
    </style>
    </head>
    <body>
      <div id="map"></div>
      <script>

        var map = L.Mapzen.map('map', {
          center: [37.7749, -122.4194],
          zoom: 13,
          scene: L.Mapzen.BasemapStyles.Walkabout
        });

      </script>
    </body>
  </html>