Loading Metacity Data
How to display data processed by MetacityGL
MetacityGL contains layers specifically designed for displaying data processed by the Metacity package - Extensions.MetacityLayer
and Extensions.MetacityTreeLayer
.
Grid Layer
The component Extensions.MetacityLayer
is designed for parsing and displaying data exported from Grids. The layer props look like this:
api
data source api
pickable
display metadata on hover - enable only one layer in the visualization
color
hex represtation of the layer base color
colorPlaceholder
color of unloaded tile placeholder
styles
radius
minimal distance for tile loading
instance
url
of GLTF model to be displyed for point data
size
size of the point models
swapDistance
distance behind which point models are replaced by rectangles
skipObjects
list of object IDs that stay hidden
enableUI
flag that signals the layer UI should get rendered
Tree Layer
Extensions.MetacityTreeLayer
extends the Extensions.MetacityLayer
and allow rendering the Quad-tree built on top of the data. The layer props extend the props from the previous section:
loadingRadius
multiplicative factor influencing the loading distance of individual tree nodes
requestTileRadius
equivalent of loadingRadius
but for loading the actual model
distFactor
exponent factor influencing the loading distance of individual tree nodes in the XY plane - used for computation of the camera distance
distZFactor
exponent factor influencing the loading distance of individual tree nodes in the Z direction - used for computation of the camera distance
radFactor
exponent factor influencing the loading distance of individual tree nodes - used for computation of the loading threshold
visualizeTree
flag whether to render the tree
zOffset
offsetting the tree model in the Z direction
Last updated