-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/mb-pages'
- Loading branch information
Showing
8 changed files
with
128 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
<div id='map'></div> | ||
<script> | ||
var map = new mapboxgl.Map({ | ||
container: 'map', | ||
style: 'mapbox://styles/mapbox/light-v9', | ||
center: [-87.62712, 41.89033], | ||
zoom: 15.5, | ||
pitch: 45 | ||
}); | ||
|
||
function rotateCamera(timestamp) { | ||
// clamp the rotation between 0 -360 degrees | ||
// Divide timestamp by 100 to slow rotation to ~10 degrees / sec | ||
map.rotateTo((timestamp / 100) % 360, {duration: 0}); | ||
// Request the next frame of the animation. | ||
requestAnimationFrame(rotateCamera); | ||
} | ||
|
||
|
||
map.on('load', function () { | ||
// Start the animation. | ||
rotateCamera(0); | ||
|
||
// Add 3d buildings and remove label layers to enhance the map | ||
var layers = map.getStyle().layers; | ||
for (var i = 0; i < layers.length; i++) { | ||
if (layers[i].type === 'symbol' && layers[i].layout['text-field']) { | ||
// remove text labels | ||
map.removeLayer(layers[i].id); | ||
} | ||
} | ||
|
||
map.addLayer({ | ||
'id': '3d-buildings', | ||
'source': 'composite', | ||
'source-layer': 'building', | ||
'filter': ['==', 'extrude', 'true'], | ||
'type': 'fill-extrusion', | ||
'minzoom': 15, | ||
'paint': { | ||
'fill-extrusion-color': '#aaa', | ||
|
||
// use an 'interpolate' expression to add a smooth transition effect to the | ||
// buildings as the user zooms in | ||
'fill-extrusion-height': [ | ||
"interpolate", ["linear"], ["zoom"], | ||
15, 0, | ||
15.05, ["get", "height"] | ||
], | ||
'fill-extrusion-base': [ | ||
"interpolate", ["linear"], ["zoom"], | ||
15, 0, | ||
15.05, ["get", "min_height"] | ||
], | ||
'fill-extrusion-opacity': .6 | ||
} | ||
}); | ||
}); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/*--- | ||
title: Animate map camera around a point | ||
description: Animate map camera around a point | ||
tags: | ||
- camera | ||
pathname: /mapbox-gl-js/example/animate-camera-around-point | ||
---*/ | ||
import Example from '../../components/example'; | ||
import html from './animate-camera-around-point.html'; | ||
export default Example(html); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters