Skip to content

Instantly share code, notes, and snippets.

@dmccarey
Last active August 29, 2015 14:16
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 dmccarey/70d24d167926ee0b6741 to your computer and use it in GitHub Desktop.
Save dmccarey/70d24d167926ee0b6741 to your computer and use it in GitHub Desktop.
Mapbox GL flying
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<title></title>
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.6.0/mapbox-gl.js'></script>
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.6.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>
#fly {
display: block;
position: relative;
margin: 0px auto;
width: 50%;
height: 40px;
padding: 10px;
border: none;
border-radius: 3px;
font-size: 12px;
text-align: center;
color: #fff;
background: #ee8a65;
}
</style>
<div id='map'></div>
<br />
<button onclick='fly();' id='fly'>Fly</button>
<script>
mapboxgl.accessToken = 'pk.eyJ1IjoibG93eWluc3RpdHV0ZSIsImEiOiJYZVF4Qm93In0.SDaI89IWUF8CPJjoP8mzGw';
var map = new mapboxgl.Map({
container: 'map',
style: 'https://gist.githubusercontent.com/dmccarey/f2dd52f94d7700436da0/raw/e6564f559c0ae91da23375926cdb25156182704b/style.json',
center: [40, -74.50],
zoom: 9
});
function fly() {
// Fly to a random location by offsetting the point 40, -74.50
// by up to 5 degrees.
map.flyTo([
40 + (Math.random() - 0.5) * 10,
-74.50 + (Math.random() - 0.5) * 10]);
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment