Skip to content

Instantly share code, notes, and snippets.

@brightrain
Last active November 4, 2016 03:59
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 brightrain/168e89894e43957d564fc8b5d189a13c to your computer and use it in GitHub Desktop.
Save brightrain/168e89894e43957d564fc8b5d189a13c to your computer and use it in GitHub Desktop.
<!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.Tron
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment