We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ref: Add a 3D model with threebox | Mapbox GL JS | Mapbox
yarn add three box-plugin
main.js
import mapboxgl from 'mapbox-gl'; import 'mapbox-gl/dist/mapbox-gl.css'; import { Threebox } from 'threebox-plugin'; mapboxgl.accessToken = 'your-mapbox-token'; const map = new mapboxgl.Map({ container: 'map', // container ID antialias: true, style: 'mapbox://styles/nonocast/cm0ttsm8t00m401rg3vk7ff4v', center: [121.5934326349772, 31.240585170245282], pitch: 60, // 俯仰角 bearing: -65, // 旋转角 zoom: 17 }); // eslint-disable-next-line no-undef const tb = (window.tb = new Threebox( map, map.getCanvas().getContext('webgl'), { defaultLights: true } )); map.on('style.load', () => { map.addLayer({ id: 'custom-threebox-model', type: 'custom', renderingMode: '3d', onAdd: function () { const scale = 10; const options = { obj: 'house.glb', type: 'gltf', scale: { x: scale, y: scale, z: scale }, units: 'meters', rotation: { x: 90, y: 0, z: 0 } }; tb.loadObj(options, (model) => { model.setCoords([121.5934326349772, 31.240585170245282]); model.setRotation({ x: 0, y: 0, z: 70}); tb.add(model); }); }, render: function () { tb.update(); } }); });
这样模型就混到map中去了,其中house.glb在#325中有描述。
然后把模型和地图对齐就会得到如下:
收工。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
ref: Add a 3D model with threebox | Mapbox GL JS | Mapbox
yarn add three box-plugin
main.js
这样模型就混到map中去了,其中house.glb在#325中有描述。
然后把模型和地图对齐就会得到如下:
收工。
The text was updated successfully, but these errors were encountered: