Skip to content

Instantly share code, notes, and snippets.

@lxbarth
Created July 10, 2015 23:23
Show Gist options
  • Save lxbarth/bcd0d1ab3c69085e2dad to your computer and use it in GitHub Desktop.
Save lxbarth/bcd0d1ab3c69085e2dad to your computer and use it in GitHub Desktop.
Swipe example (workaround for Chrome)
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>RunKeeper</title>
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<script src='https://api.tiles.mapbox.com/mapbox.js/v2.2.1/mapbox.js'></script>
<link href='https://api.tiles.mapbox.com/mapbox.js/v2.2.1/mapbox.css' rel='stylesheet' />
<style>
body { margin:0; padding:0; }
#map { position:absolute; top:0; bottom:0; width:100%; }
</style>
</head>
<body>
<style>
.range {
position:absolute;
width:100%;
}
.leaflet-top .leaflet-control-zoom {
top:20px;
}
</style>
<div id='map'></div>
<input id='range' class='range' type='range' min='0' max='1.0' step='any' />
<script>
L.mapbox.accessToken = 'pk.eyJ1IjoibHhiYXJ0aCIsImEiOiJFVXdYcUlvIn0.bbaHTEWlnAwGgyVwJngMdQ';
var map = L.mapbox.map('map');
L.mapbox.tileLayer('mapbox.outdoors').addTo(map);
var overlay = L.mapbox.tileLayer('mapbox.comic').addTo(map);
var range = document.getElementById('range');
function clip() {
var nw = map.containerPointToLayerPoint([0, 0]),
se = map.containerPointToLayerPoint(map.getSize()),
clipX = nw.x + (se.x - nw.x) * range.value;
var elem = overlay.getContainer();
elem.style.clip = 'rect(' + [nw.y, clipX, se.y, nw.x].join('px,') + 'px)';
// Force Chrome to repaint
// http://stackoverflow.com/questions/3485365/how-can-i-force-webkit-to-redraw-repaint-to-propagate-style-changes
elem.style.display='none';
elem.offsetHeight;
elem.style.display='';
}
range['oninput' in range ? 'oninput' : 'onchange'] = clip;
map.on('move', clip);
map.setView([49.434,-123.272], 7);
clip();
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment