BananaGL
3D Web Visualization Library
The development of this library is now on hold; Metacity Tools are in the process of transitioning from BananaGL to MetacityGL
Visualize data preprocessed by Metacity
with BananaGL
- a client-side web visualization library. It is built with three.js and Typescript
.
👩💻 Newest releases are always available on our GitHub
📦 Datasets can be obtained from our DataAPI service
Quick Start Guide
See Releases on our GitHub.
Download
bananagl.zip
and use its contents in your project.Create
index.html
and start coding!
Minimal HTML starting template:
Never set any CSS styles (directly or in a separate style sheet) modifying the width or height of the<canvas>
passed to BananaGL. Set the sizes on its parent instead.
BananaGL
keeps the provided <canvas>
at 100% width and height of its parents, and adds a small annotation to its bottom.
Initialization
First, you need to initialize the library:
The function accepts a parameter object with the following properties:
canvas
✅
HTMLCanvasElement
metacityWorker
✅
string
, a path to background Worker JS file which handles data loading
background
-
number
, such as 0xffffff
defining the background color
far
-
number
, camera far
maxDistance
-
number
, limits how far can user zoom out
maxPolarAngle
-
number
, limits how low can user rotate the camera, horizontal view corresponds to Math.PI / 2
minDistance
-
number
, limits how close can user zoom in
minPolarAngle
-
number
, limits how high can user rotate the camera, top view corresponds to 0
, but for numerical stability reasons it is advisable to use something like 0.001
near
-
number
, camera near
offset
-
number
, when the camera is initialized in isometric style of view, this is the camera offset from the camera target (focus point)
position
-
number
, initial position of the camera, overwrites the coordinates passed in URL
target
-
number
, initial target of the camera, overwrites the coordinates passed in URL
zoomSpeed
-
number
, speed of zooming
lightIntensity
-
number
, the total intensity of lights, backup for ambientLightIntensity
and directionalLightIntensity
ambientLightIntensity
-
number
, the intensity of the ambient light
directionalLightIntensity
-
number
, the intensity of directional top-down light
onClick
-
(id: number, metadata: Object) => string
, attach a callback that will return a string to be placed on top of an object after a click; requires pickable
to be set up to true on layers where the callback should be applied; id
corresponds to the clicked object id, metadata is the clicked object metadata record (can also be modified here!)
invertCopyrightColor
-
boolean
, if true, the copyright label colors get inverted
How Camera works
The Camera
has two significant attributes which influence the LOD loading, etc.:
position
- actual position of the camera in 3D spacetarget
- focus point of the camera that always lies in thez = 0
plane
Despite its looks, BananaGL
uses Perspective camera with fov = 5
, and by default, all limits are set up for viewing data in the coordinate system EPSG:5514
.
Layer
You can add new geographic layers to you visualization following way:
The function accepts a parameter object with the following properties:
api
✅
baseColor
-
number
, default color used when no styles are applied
loadingColor
-
number
, a color used in the loading animation
placeholderColor
-
number
, a color used for a placeholder when the geometry is not loaded yet
placeholderOpacity
-
number
, opacity of the placeholder geometry
loadRadius
-
number
, radius around camera target (focus point) where all objects will be loaded
lodLimits
-
number[]
, breakpoints of camera target-position distance to switch LODs
name
-
string
, name of the layer
pickable
-
boolean
, whether the layer objects should be pickable
pointInstance
-
string
, path to GLTF model used for instances
styles
-
Style[]
, array of styles applicable to layer
Styles
The color of mesh models can be modified by providing styling rules to individual layers.
In the example above, the object with attribute utilization
set to value office
will be blue, and all buildings with height
equal to 50 will be red.
Computed Properties
On loading, all mesh objects are automatically assigned the following attributes:
height
-number
, height of the objectbaseHeight
-number
, minimal z-coordinate of all object verticesbbox
-[number
[], number[]]
, object bounding box,bbox[0]
is the minimal coordinate ,bbox[1]
is maximum
Rule Resolution
If two or more rules apply to a single object, the last matched rule is applied.
If no rule matches, the baseColor
of the layer is applied.
Rule Chaining
If you want to specify a rule where both of the rules must apply, you can chain them in a following way:
Style Rules
Several styling rules are available:
.forAll
.forAll
Applies the same color to all objects, essentially the same as using baseColor
(just more computationally expensive, use only for testing or if you really despise your users).
.withAttributeEqualTo
.withAttributeEqualTo
Applies color to all objects with a certain attribute equal to a provided value.
.withAttributeRange
.withAttributeRange
Applies color to all objects with a certain attribute in provided range.
.withAttributeRangeExt
.withAttributeRangeExt
Applies color to all objects with a certain attribute in provided range. If the value is outside of the range, the color is extrapolated (constant method).
Combined with useColor
using a single color works as an indication of whether the attribute is present.
.useColor
.useColor
Specifies which color or colormap should be used if this particular rule applies. You can specify a single color
or a color palette. Palettes work well in combination with AttributeRange
rules.
If you call useColor
more than once on a single rule, the last provided value is used.
Last updated