Over zoom tiles
Zoom map tiles past native zoom levels
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>Over zoom tiles</title>
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<script src='https://api.mapbox.com/mapbox.js/v3.1.1/mapbox.js'></script>
<link href='https://api.mapbox.com/mapbox.js/v3.1.1/mapbox.css' rel='stylesheet' />
<style>
body { margin:0; padding:0; }
#map { position:absolute; top:0; bottom:0; width:100%; }
</style>
</head>
<body>
<style>
#zoom-level {
margin: 10px;
padding: 10px;
position: absolute;
right: 0;
top:0;
z-index: 1000;
background: #ddd;
}
</style>
<div id='map'></div>
<div id='zoom-level'>Zoom Level: 15</div>
<script>
L.mapbox.accessToken = '<your access token here>';
// The native maximum zoom level for this tile layer is 19
var map = L.mapbox.map('map', 'mapbox.streets-satellite', {
tileLayer: {
maxNativeZoom: 19 // The map will use zoom level 19 tiles for all zoom levels past 19
}
}).setView([40.7275, -73.9948], 15);
map.on('zoomend', function(){
document.getElementById('zoom-level').innerHTML = 'Zoom Level: ' + map.getZoom();
});
</script>
Get a free Mapbox account to create your own custom map and use it in this example.
Use this example by copying its source into your own HTML page and
replacing the Map ID
with
one of your own from your projects.
Having trouble with JavaScript? Try out Codecademy
or contact our support team.