You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Create a map tiles provider object
const provider = new MapBoxProvider(
apiKey,
'mapbox/satellite-v9',
MapBoxProvider.STYLE,
'png',
false,
'v9'
);
// Create the map view and add it to your THREE scene
const map = new MapView(MapView.PLANAR, provider);
scene.add(map);
The text was updated successfully, but these errors were encountered:
Can you provide a working code recipe for how to render a mapbox (or any map for that matter), a three js scene.
Here's a snippet I have added to the intro scene in ThreeJS: https://threejs.org/docs/#manual/en/introduction/Creating-a-scene, and while the cube renders, I don't see anything else happening from geo-three.
The text was updated successfully, but these errors were encountered: