Skip to content

Instantly share code, notes, and snippets.

@peterqliu
Last active February 25, 2016 18:49
Show Gist options
  • Save peterqliu/2e0200b2be0df23e5a47 to your computer and use it in GitHub Desktop.
Save peterqliu/2e0200b2be0df23e5a47 to your computer and use it in GitHub Desktop.
<!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.14.2/mapbox-gl.js'></script>
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.14.2/mapbox-gl.css' rel='stylesheet' />
<style>
body { margin:0; padding:0; }
#map { position:absolute; top:0; bottom:0; width:100%; }
</style>
</head>
<body>
<div id='map'></div>
<script>
mapboxgl.accessToken = 'pk.eyJ1IjoicGV0ZXJxbGl1IiwiYSI6ImpvZmV0UEEifQ._D4bRmVcGfJvo1wjuOpA1g';
var map = new mapboxgl.Map({
container: 'map', // container id
style: 'mapbox://styles/peterqliu/ciksxhrpj005w92klcydt5ut9', //stylesheet location
center: [-122.4766159057617, 37.77505678240509],
zoom: 12 // starting zoom
});
map.on('mousemove', function(e){
map.featuresAt(e.point,
{radius: 0, layers:['neighborhoods']},
function (err, features) {
if (err) throw err;
if (features[0] && features[0].layer.id ==='neighborhoods'){
name = features[0].properties.neighborhood
map.setFilter('green_overlay',['==','neighborhood', name])
}
}
)
})
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment