I'm new to threeBox and I'm developing a mapbox-gl-js map that has a 3D buildings (fill-extrusion) layer from tiles source. I want to add a symbol/icon layer with elevation from tile source useing threeBox (like icon over special buildings etc.).
From what I have seen so far threeBox layers in Mapbox can be added only GeoJson sources, is it possible to add to threeBox layer a tiles source as one adds to MapBox layers?
Thanks.
Threebox with tile suorce
205 Views Asked by Yoad At
1
There are 1 best solutions below
Related Questions in JAVASCRIPT
- Angular Show All When No Filter Is Supplied
- Why does a function show up as not defined
- I count the time the user takes to solve my quiz using Javascript but I want the same time displayed on another page
- Set "More" "Less" font size
- Using pagination on a table in AngularJS
- How to sort these using Javascript or Jquery Most effectively
- how to fill out the table with next values in array with one button
- State with different subviews
- Ajax jQuery firing multiple time display event for the same result
- Getting and passing MVC Model data to AngularJS controller
- Disable variable in eval
- javascript nested loops waiting for user input
- .hover() seems to overwrite .click()
- How to sort a multi-dimensional array by the second array in descending order?
- How do I find the fonts that are not loading in a CORS situation ( MoovWeb )?
Related Questions in 3D
- Is there a way to import Collada files into Java?
- 3d mouse aim camera 3rd person vertical C#
- 3D B-Spline approximation
- MatLab 3-vector plot/mesh with colour-scale
- Matplotlib 3d: surface does not cover a line
- Draw a sphere on a billboard with world normal from a pointlist
- babylon skybox from hell
- Create histogram
- How to get accurate 3D depth from 2D screen mouse click for large scale object in OpenGL?
- Custom WhirlyGlobe Skin
- Converting 2D images to 3D
- How to setup camera to point at object
- Finding 3D coordinate of object
- MATLAB 3D sliding window on a volume
- How to check for collisions in ThreeJS?
Related Questions in MAPBOX-GL-JS
- How can I get the position of a specific marker on mapbox?
- How can I add a data source hosted Mapbox into a mapbox-gl-js project
- Can't get custom markers to work in Mapbox GL JS
- Convert coordinates to pixels on screen (and back again)
- Mapbox 3D satellite imagery feature
- Mapbox gl repeat marker
- How to setup a centralized state for a mapbox map in Vuex?
- Avoid queryRenderedFeatures erroring out on non existing layers
- Mapbox No Source With This ID
- how do you import mapbox-gl-draw using webpack?
- Not all Mapbox Popups displaying
- Mapbox-js-gl Not Showing Raster Tiles
- Mapbox GL Issue with Updating Line Display
- Change colour of MabBox Draw Polygon
- How to use OpenMapTiles server for MapBox GL JS?
Related Questions in THREEBOX
- Strange model behavior when using InstancedMesh with CameraSync (threebox)
- Remove individual features from OSM in mapbox
- Why can't I load 3D models with Mapbox GL JS and Threebox with this Angular code
- Threebox and Mapbox: Why are textures and shapes disappearing on consecutive instances of the same GLTF model?
- Threebox how do I get all 3d objects on the map?
- threebox "projectToWorld" returns values exceeding canvas, how do I fix this? (with sample code)
- Object Rotation in Three.js / Threemap
- How to change the camera position in threebox?
- Custom threebox layer for react-map-gl
- Threebox with tile suorce
- Three.js GIS Map (connect layers/attributive information)
- Threebox GLTF Model partly wrong
- 3D model altitude not stable when using MapBox elevation raster-dem
- Have 3D model in mapbox/threebox to sit on top of DEM layer
- Threebox Mapbox: Every of my edited models ends up a as giant ball in the sky
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I guess ThreeBox doesn't support vector tiles.
You may be able to hack something to work by using
map.querySourceFeatures()to access all the buildings in the loaded viewport as GeoJSON, then using that. There are lots of caveats that you will discover. :)