<html>
<head>
<meta charset='utf-8' />
<title>Extrude polygons for 3D indoor mapping</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.54.0/mapbox-gl.js'></script>
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.54.0/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>
// 參考 3D indoor mapping https://docs.mapbox.com/mapbox-gl-js/example/3d-extrusion-floorplan/
// 此例使用的geojson檔案 https://docs.mapbox.com/mapbox-gl-js/assets/indoor-3d-map.geojson
// 如果將附檔import到自己的Mapbox Studio Dataset進行編輯 https://studio.mapbox.com/datasets/
// 先將地圖位置定於 -87.61694, 41.86625 就能看到效果
// 自行增減繪製建築物的外牆多邊形,並對Property加以設定,然後將匯出的geojson檔案內容複製於此...
var FLOORPLAN =
{
};
mapboxgl.accessToken = 'pk.eyJ1IjoiY2hlbnl1eWkiLCJhIjoiY2l1ZWoxemx6MDAweTJ5cHI3NHNnajR2NiJ9.cNpWK-0HoYbcumuQ8yvbjQ';
var map = new mapboxgl.Map({
container: 'map',
style: 'mapbox://styles/mapbox/streets-v11',
center: [-87.61694, 41.86625],
zoom: 15.99,
pitch: 40,
bearing: 20
});
map.on('load', function() {
map.addLayer({
'id': 'room-extrusion',
'type': 'fill-extrusion',
'source': {
// GeoJSON Data source used in vector tiles, documented at
// https://gist.github.com/ryanbaumann/a7d970386ce59d11c16278b90dde094d
'type': 'geojson',
'data': FLOORPLAN // 將原例的此處資料挪到前面定義
},
// 加上篩選條件表示式 https://docs.mapbox.com/mapbox-gl-js/style-spec/#expressions-!=
// 只取 'height': 0 https://docs.mapbox.com/mapbox-gl-js/style-spec/#expressions-get
"filter": ['!=', ["get", "height"], 0],
'paint': {
// See the Mapbox Style Specification for details on data expressions.
// https://docs.mapbox.com/mapbox-gl-js/style-spec/#expressions
// Get the fill-extrusion-color from the source 'color' property.
'fill-extrusion-color': ['get', 'color'],
// Get fill-extrusion-height from the source 'height' property.
'fill-extrusion-height': ['get', 'height'],
// Get fill-extrusion-base from the source 'base_height' property.
'fill-extrusion-base': ['get', 'base_height'],
// Make extrusions slightly opaque for see through indoor walls.
'fill-extrusion-opacity': 0.5
}
});
// 參考 Draw GeoJSON points https://www.mapbox.com/mapbox-gl-js/example/geojson-markers/
map.addSource("points", {
"type": "geojson",
"data": FLOORPLAN // 將原例的此處資料挪到前面定義
});
map.addLayer({
"id": "points",
"type": "symbol",
"source": "points",
// 加上篩選條件表示式 https://docs.mapbox.com/mapbox-gl-js/style-spec/#expressions-==
// 只取'name':'Exit' https://docs.mapbox.com/mapbox-gl-js/style-spec/#expressions-get
"filter": ['==', ["get", "name"], 'Exit'],
"layout": {
"icon-image": "fire-station-15", // 參考v8的standard icons https://github.com/mapbox/mapbox-gl-styles#standard-icons
"text-field": "{name}",
"text-font": ["Open Sans Semibold", "Arial Unicode MS Bold"],
"text-offset": [0, 0.6], // 參見 https://docs.mapbox.com/mapbox-gl-js/style-spec/#layout-symbol-text-offset
"text-anchor": "top" // 參見 https://docs.mapbox.com/mapbox-gl-js/style-spec/#layout-symbol-text-anchor
}
});
});
</script>
</body>
</html>
Output
You can jump to the latest bin by adding /latest
to your URL
Keyboard Shortcuts
Shortcut | Action |
---|---|
ctrl + [num] | Toggle nth panel |
ctrl + 0 | Close focused panel |
ctrl + enter | Re-render output. If console visible: run JS in console |
Ctrl + l | Clear the console |
ctrl + / | Toggle comment on selected lines |
ctrl + ] | Indents selected lines |
ctrl + [ | Unindents selected lines |
tab | Code complete & Emmet expand |
ctrl + shift + L | Beautify code in active panel |
ctrl + s | Save & lock current Bin from further changes |
ctrl + shift + s | Open the share options |
ctrl + y | Archive Bin |
Complete list of JS Bin shortcuts |
JS Bin URLs
URL | Action |
---|---|
/ | Show the full rendered output. This content will update in real time as it's updated from the /edit url. |
/edit | Edit the current bin |
/watch | Follow a Code Casting session |
/embed | Create an embeddable version of the bin |
/latest | Load the very latest bin (/latest goes in place of the revision) |
/[username]/last | View the last edited bin for this user |
/[username]/last/edit | Edit the last edited bin for this user |
/[username]/last/watch | Follow the Code Casting session for the latest bin for this user |
/quiet | Remove analytics and edit button from rendered output |
.js | Load only the JavaScript for a bin |
.css | Load only the CSS for a bin |
Except for username prefixed urls, the url may start with http://jsbin.com/abc and the url fragments can be added to the url to view it differently. |