Skip to content

Instantly share code, notes, and snippets.

@bsudekum
Created November 18, 2013 17:06
Show Gist options
  • Save bsudekum/7531417 to your computer and use it in GitHub Desktop.
Save bsudekum/7531417 to your computer and use it in GitHub Desktop.
OverZoom
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<title>OverZoom</title>
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no' />
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7/leaflet.css" />
<script src="http://cdn.leafletjs.com/leaflet-0.7/leaflet.js"></script>
<style>
body { margin:0; padding:0; }
#map { position:absolute; top:0; bottom:0; width:100%; }
</style>
</head>
<body>
<div id='map'></div>
<script>
var map = L.map('map');
var overZoom = L.tileLayer('https://{s}.tiles.mapbox.com/v3/bobbysud.map-cfaq2kkp/{z}/{x}/{y}.png', {
maxZoom: 20,
maxNativeZoom: 19
}).addTo(map);
map.setView([40.7275,-73.9948], 15);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment