Skip to content
Snippets Groups Projects
Commit d1593fde authored by Boris Mericskay's avatar Boris Mericskay
Browse files

Update Buildingmaps.html

parent d4c8d476
No related branches found
No related tags found
No related merge requests found
......@@ -17,8 +17,7 @@
<script>
//Appel et configuration de la carte
// Map configuration
var map = new mapboxgl.Map({
container: 'map',
style: 'https://openmaptiles.geo.data.gouv.fr/styles/osm-bright/style.json', //Fond de carte
......@@ -29,10 +28,11 @@ var map = new mapboxgl.Map({
minZoom:14.5
});
// Ajout des données
// Add data (Geojson)
map.on('load', function () {
//BATIMENTS
// Building symbology (3D extrusion and color)
map.addSource('Batiments', {
type: 'geojson',
......@@ -43,9 +43,7 @@ map.addLayer({
'id': 'Batiments',
'type': 'fill-extrusion',
'source': 'Batiments',
'paint':
{'fill-extrusion-color': '#A9A9A9',
'fill-extrusion-height':{'type': 'identity','property': 'HAUTEUR'},
'paint':{'fill-extrusion-height':{'type': 'identity','property': 'HAUTEUR'},
'fill-extrusion-color': {
'property': 'HAUTEUR',
'stops': [
......@@ -54,26 +52,20 @@ map.addLayer({
[9, '#d9ef8b'],
[12, '#ffffbf'],
[16, '#fee08b'],
[20, '#fc8d59'],
[20, '#fc8d59'],
[30, '#d73027']]},
'fill-extrusion-opacity': 0.7,
'fill-extrusion-base': 0}
'fill-extrusion-opacity': 0.7,
'fill-extrusion-base': 0}
});
});
});
// Ajout controle de navigation et echelle
// Add navigation control and scale
map.addControl(new mapboxgl.NavigationControl({position: 'top-left'}));
map.addControl(new mapboxgl.ScaleControl({position: 'bottom-right'}));
</script>
</body>
</html>
\ No newline at end of file
</html>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment