UF Land Use Category Slider

Comparing L2 & L4 in Oakland

by sk_urbanfootprint

HTML

<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<title>Swipe between maps</title>
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v1.0.0/mapbox-gl.js'></script>
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v1.0.0/mapbox-gl.css' rel='stylesheet' />
<style>
body { margin:0; padding:0; }
#map { position:absolute; top:0; bottom:0; width:100%; }
</style>
</head>
<body>
 
<style>
body {
overflow: hidden;
}
 
body * {
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
 
.map {
position: absolute;
top: 0;
bottom: 0;
width: 100%;
}
</style>
<script src='https://api.mapbox.com/mapbox-gl-js/plugins/mapbox-gl-compare/v0.1.0/mapbox-gl-compare.js'></script>
<link rel='stylesheet' href='https://api.mapbox.com/mapbox-gl-js/plugins/mapbox-gl-compare/v0.1.0/mapbox-gl-compare.css' type='text/css' />
 
<div id='before' class='map'></div>
<div id='after' class='map'></div>
<script>
mapboxgl.accessToken = 'pk.eyJ1IjoicG9seWdvbnMiLCJhIjoiY2ltd2FwZ2VzMDMzNHY3a2t4Znp0NTh1dyJ9.zvNdPb1M0EDbM8f7uEykLw';

var beforeMap = new mapboxgl.Map({
container: 'before',
style: 'mapbox://styles/polygons/cjx3fas8b1zu31dn3xbrbumlw', // Land Use L4
center: [0, 0],
zoom: 0,
minZoom: 13
});

var afterMap = new mapboxgl.Map({
container: 'after',
style: 'mapbox://styles/polygons/cjx3dbsfc0nc11cllek4f66ru', // Land Use L2
center: [0, 0],
zoom: 0,
minZoom: 13
});
 
var map = new mapboxgl.Compare(beforeMap, afterMap, {
// Set this to enable comparing two maps by mouse movement:
// mousemove: true
});
</script>
 
</body>
</html>