Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
427ab99
Refactor
sweco-seiamm Nov 12, 2025
4a5f76e
Updated console text
sweco-seiamm Nov 12, 2025
1ec256c
Fixed bug where 3D would not work in prod mode
sweco-seiamm Nov 18, 2025
be4247e
Removed scalebar and coordinate display
sweco-seiamm Nov 18, 2025
60beb39
added measure tool and dynamic scaling for low performing computers
sweco-seiamm Nov 21, 2025
6276630
shows the line while measuring
sweco-seiamm Nov 21, 2025
5e358b2
measure several lines
sweco-seiamm Nov 21, 2025
55df873
changed config for scaling
sweco-seiamm Nov 25, 2025
c8b77dc
added function to make text and billboard overlap 3Dtiles.
sweco-seiamm Nov 25, 2025
2babb3c
added minimap in streetview
sweco-seiamm Dec 8, 2025
7638d6d
added view-cone to minimap
sweco-seiamm Dec 8, 2025
df95a54
changed layout on mobile
sweco-seiamm Dec 8, 2025
254d5f3
added function to read loads of trees
sweco-seiamm Dec 10, 2025
92ebede
optimised treeLoadFunction
sweco-seiamm Dec 10, 2025
e023c41
Updated treeLoad function
sweco-seiamm Dec 12, 2025
c01cd61
Update loadTrees.ts
sweco-seiamm Dec 12, 2025
21b3d29
Update loadTrees.ts
sweco-seiamm Dec 12, 2025
5b1efb9
Update loadTrees.ts
sweco-seiamm Dec 12, 2025
bf0a963
fixed small bugs
sweco-seiamm Dec 15, 2025
2376dc7
optimized loadTree
sweco-seiamm Dec 15, 2025
e3aae80
Updated treeloader
sweco-seiamm Dec 15, 2025
0b46443
Update TreeLoadScheduler.ts
sweco-seiamm Dec 15, 2025
d6c71a5
Fixed bug where toggeling trees did not work
sweco-seiamm Dec 16, 2025
86cb2b7
Update TreeLoadScheduler.ts
sweco-seiamm Dec 16, 2025
46e5aa0
Update dynamicResolutionScaling.ts
sweco-seiamm Dec 16, 2025
9671a43
documentation, optimization, and clean up
sweco-seiamm Feb 12, 2026
28dcfff
Removed files
sweco-seiamm Feb 12, 2026
378f385
Updated documentation
sweco-seiamm Feb 12, 2026
e1d1a45
renamed file
sweco-seiamm Feb 12, 2026
626aac6
moved a file
sweco-seiamm Feb 12, 2026
d0dcd0c
Update webpack.dev.js
sweco-seiamm Feb 12, 2026
1954a86
Update package.json
sweco-seiamm Feb 12, 2026
c276c26
Update README.md
sweco-seiamm Feb 12, 2026
6238908
Update README.md
sweco-seiamm Feb 12, 2026
2a62afc
Merge branch 'main' of https://github.com/Tomelilla-kommun/globe-plugin
sweco-seiamm Feb 12, 2026
b97682e
Update package.json
sweco-seiamm Feb 12, 2026
26bd2b3
added draw function and some refactoring of globe.ts
sweco-seiamm Mar 3, 2026
fd6abe7
Update README.md
sweco-seiamm Mar 3, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules
.vscode
build
182 changes: 175 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,191 @@
# Origo globe plugin
A plugin for [Origo map](https://github.com/origo-map/origo) to enable [CesiumJS](https://cesium.com/platform/cesiumjs/) globe using [Ol-Cesium](https://openlayers.org/ol-cesium/)
A plugin for [Origo map](https://github.com/origo-map/origo) to enable a [CesiumJS](https://cesium.com/platform/cesiumjs/) globe using [Ol-Cesium](https://openlayers.org/ol-cesium/).

![Söderstadion](data/soderstadion.png "Söderstadion")
<img src="data/soderstadion.png" alt="Söderstadion" title="Söderstadion" height="400px" />

## Setup
See [index_example.html](https://github.com/haninge-geodata/origo-globe-plugin/blob/main/index_example.html) and [index_example.json](https://github.com/haninge-geodata/origo-globe-plugin/blob/main/index_example.json) to get you started with configuration.

Copy files in build folder and put in Origos, plugins/globe folder.
See [index_example.html](https://github.com/haninge-geodata/origo-globe-plugin/blob/main/index_example.html) and [index_example.json](https://github.com/haninge-geodata/origo-globe-plugin/blob/main/index_example.json) to get started with configuration.

ℹ️ Due to loading issues ol-cesium needs to be loaded from Origo-map.
Origo Globe plugin only works with reference system EPSG:3857. Make sure that `index.json` is set to use EPSG:3857.

Install ol-cesium
Copy the files in the `build` folder and place them in Origo's `plugins/globe` folder.

ℹ️ Due to loading issues, ol-cesium needs to be loaded from Origo-map.

Install ol-cesium:
```
npm install olcs
```
In [origo.js](https://github.com/origo-map/origo/blob/master/origo.js) do
In [origo.js](https://github.com/origo-map/origo/blob/master/origo.js), add:

```
import OLCesium from 'olcs/OLCesium';

window.OLCesium = OLCesium;
```

and add this at thebottom of the file:

```
Origo.layerType = layerType;
```

before this:

```
export default Origo;
```


## Layer configuration

To add 3D layers to the viewer, please see `index_example.json`.

### Custom terrain tiles

To add a custom terrain provider that points to a local terrain tile folder, specify it in your `index.html` configuration:

```js
cesiumTerrainProvider: 'path/to/your/terrain',
```

### Custom 3D-tile layer

Within `index.json`, add your custom 3D-tile layer as shown below:

```js
{
"name": "Byggnader",
"title": "Byggnader",
"type": "THREEDTILE",
"url": "path/to/your/3Dtiles/tileset.json",
"visible": true,
"style": {
"color": "color('#FFFFFF', 1)"
}
}
```

Changing `style` will affect the appearance of the 3D layer.

### glb/gltf models

To add glb/gltf models, use the example below. Several models can be added inside the array "models".

```js
{
"name": "GLB",
"title": "GLB",
"type": "THREEDTILE",
"dataType": "model",
"url": "path/to/your/GLB-GLTF-files",
"visible": true,
"models": [
{
"fileName": "hus1.glb",
"lat": 55.54734220671179,
"lng": 13.949731975672035,
"height": 66.0,
"heightReference": "NONE",
"rotHeading": 0,
"animation": false
},
...
]
}
```

### Extruded 2D-layer

To add 2D data as 3D extruded objects, add the layer as shown below.

**Requirements:**
- The data must have two height attributes: the height at the top of the object and the height at the bottom of the object, both relative to the geoid.

Inside the `extrusion` attribute, assign the attribute values to `groundAttr` (height at the bottom of the object) and `roofAttr` (height at the top of the object).

(Only tested with GeoServer)

```js
{
"name": "geostore:Byggnader",
"title": "Byggnader2D",
"dataSource": "https://mapserver.com/WFS",
"type": "THREEDTILE",
"dataType": "extrusion",
"extrusion": {
"groundAttr": "mark_hojd",
"roofAttr": "tak_hojd",
"color": "LIGHTGRAY",
"opacity": 0.9,
"outline": true,
"outlineColor": "RED"
},
"visible": true
}
```
Changing `color`, `opacity`, `outline`, and `outlineColor` will affect the appearance of the layer.

## Functions

All functions described in this section can be enabled or disabled in the `Globe` configuration (see below) within `index.html`:

```js
const globe = Globe({
viewShed: true,
streetView: true,
cameraControls: true,
measure: true,
quickTimeShadowPicker: true,
flyTo: false,
// ...
});
```

### ViewShed

The ViewShed feature analyzes the visible area from a selected point, taking into account terrain and 3D objects (such as buildings and trees) that may obstruct the view.

To use this function:
1. Activate the ViewShed tool.
2. Select the origin point for the analysis.
3. Select the endpoint to define the direction and extent of the viewshed.

<img src="data/viewShed.png" alt="ViewShed" title="ViewShed" height="300px" />

### StreetView

The StreetView feature allows users to navigate through the 3D environment at ground level, providing an immersive experience similar to real-world street-level exploration. This feature lets you move around, look in different directions, and explore the environment as if you were walking through it.

To use this function:
1. Activate StreetView by pressing the person icon at the bottom left corner.
2. Select the point on the map where you want to enter StreetView.
3. To exit StreetView mode, press the person icon again.

While in this mode, you can change the simulated height by pressing the up and down arrows beside the person icon, tilt the camera, and click on the ground in the viewer to pan to new areas.

<img src="data/streetView.png" alt="StreetView" title="StreetView" height="400px" />

### CameraControls

If enabled, extra controls are added to the map in the bottom left corner.
With these controls, the user can tilt and rotate the camera using buttons.

<img src="data/cameraControls.png" alt="CameraControls" title="CameraControls" height="80px" />

### Measure

The Measure tool can measure between 3D objects and also between terrain and 3D objects.

<img src="data/measure.png" alt="Measure" title="Measure" height="340px" />

### QuickTimeShadowPicker

Enables quick access to dates and times of equinoxes and solstices.

<img src="data/quickTimeShadowPicker.png" alt="QuickTimeShadowPicker" title="QuickTimeShadowPicker" height="340px" />

### FlyTo

If activated, FlyTo will animate the camera to pan and zoom to focus on the selected object.
1 change: 0 additions & 1 deletion build/cesiumassets/Assets/IAU2006_XYS/IAU2006_XYS_0.json

This file was deleted.

1 change: 0 additions & 1 deletion build/cesiumassets/Assets/IAU2006_XYS/IAU2006_XYS_1.json

This file was deleted.

1 change: 0 additions & 1 deletion build/cesiumassets/Assets/IAU2006_XYS/IAU2006_XYS_10.json

This file was deleted.

1 change: 0 additions & 1 deletion build/cesiumassets/Assets/IAU2006_XYS/IAU2006_XYS_11.json

This file was deleted.

1 change: 0 additions & 1 deletion build/cesiumassets/Assets/IAU2006_XYS/IAU2006_XYS_12.json

This file was deleted.

1 change: 0 additions & 1 deletion build/cesiumassets/Assets/IAU2006_XYS/IAU2006_XYS_13.json

This file was deleted.

1 change: 0 additions & 1 deletion build/cesiumassets/Assets/IAU2006_XYS/IAU2006_XYS_14.json

This file was deleted.

1 change: 0 additions & 1 deletion build/cesiumassets/Assets/IAU2006_XYS/IAU2006_XYS_15.json

This file was deleted.

1 change: 0 additions & 1 deletion build/cesiumassets/Assets/IAU2006_XYS/IAU2006_XYS_16.json

This file was deleted.

1 change: 0 additions & 1 deletion build/cesiumassets/Assets/IAU2006_XYS/IAU2006_XYS_17.json

This file was deleted.

1 change: 0 additions & 1 deletion build/cesiumassets/Assets/IAU2006_XYS/IAU2006_XYS_18.json

This file was deleted.

1 change: 0 additions & 1 deletion build/cesiumassets/Assets/IAU2006_XYS/IAU2006_XYS_19.json

This file was deleted.

1 change: 0 additions & 1 deletion build/cesiumassets/Assets/IAU2006_XYS/IAU2006_XYS_2.json

This file was deleted.

1 change: 0 additions & 1 deletion build/cesiumassets/Assets/IAU2006_XYS/IAU2006_XYS_20.json

This file was deleted.

1 change: 0 additions & 1 deletion build/cesiumassets/Assets/IAU2006_XYS/IAU2006_XYS_21.json

This file was deleted.

1 change: 0 additions & 1 deletion build/cesiumassets/Assets/IAU2006_XYS/IAU2006_XYS_22.json

This file was deleted.

1 change: 0 additions & 1 deletion build/cesiumassets/Assets/IAU2006_XYS/IAU2006_XYS_23.json

This file was deleted.

1 change: 0 additions & 1 deletion build/cesiumassets/Assets/IAU2006_XYS/IAU2006_XYS_24.json

This file was deleted.

1 change: 0 additions & 1 deletion build/cesiumassets/Assets/IAU2006_XYS/IAU2006_XYS_25.json

This file was deleted.

1 change: 0 additions & 1 deletion build/cesiumassets/Assets/IAU2006_XYS/IAU2006_XYS_26.json

This file was deleted.

1 change: 0 additions & 1 deletion build/cesiumassets/Assets/IAU2006_XYS/IAU2006_XYS_27.json

This file was deleted.

1 change: 0 additions & 1 deletion build/cesiumassets/Assets/IAU2006_XYS/IAU2006_XYS_3.json

This file was deleted.

1 change: 0 additions & 1 deletion build/cesiumassets/Assets/IAU2006_XYS/IAU2006_XYS_4.json

This file was deleted.

1 change: 0 additions & 1 deletion build/cesiumassets/Assets/IAU2006_XYS/IAU2006_XYS_5.json

This file was deleted.

1 change: 0 additions & 1 deletion build/cesiumassets/Assets/IAU2006_XYS/IAU2006_XYS_6.json

This file was deleted.

1 change: 0 additions & 1 deletion build/cesiumassets/Assets/IAU2006_XYS/IAU2006_XYS_7.json

This file was deleted.

1 change: 0 additions & 1 deletion build/cesiumassets/Assets/IAU2006_XYS/IAU2006_XYS_8.json

This file was deleted.

1 change: 0 additions & 1 deletion build/cesiumassets/Assets/IAU2006_XYS/IAU2006_XYS_9.json

This file was deleted.

Binary file not shown.
Binary file removed build/cesiumassets/Assets/Images/cesium_credit.png
Binary file not shown.
Binary file not shown.
Binary file removed build/cesiumassets/Assets/Images/ion-credit.png
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.

This file was deleted.

Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/airfield.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/airport.png
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/bakery.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/bank.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/bar.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/baseball.png
Diff not rendered.
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/beer.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/bicycle.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/building.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/bus.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/cafe.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/camera.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/campsite.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/car.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/cemetery.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/cesium.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/chemist.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/cinema.png
Diff not rendered.
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/circle.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/city.png
Diff not rendered.
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/college.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/commercial.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/cricket.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/cross.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/dam.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/danger.png
Diff not rendered.
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/dog-park.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/embassy.png
Diff not rendered.
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/entrance.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/farm.png
Diff not rendered.
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/ferry.png
Diff not rendered.
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/fuel.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/garden.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/gift.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/golf.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/grocery.png
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/heart.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/heliport.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/hospital.png
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/land-use.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/laundry.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/library.png
Diff not rendered.
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/lodging.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/logging.png
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/marker.png
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/monument.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/museum.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/music.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/oil-well.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/park.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/park2.png
Diff not rendered.
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/parking.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/pharmacy.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/pitch.png
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/police.png
Diff not rendered.
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/post.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/prison.png
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/rail.png
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/rocket.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/school.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/scooter.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/shop.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/skiing.png
Diff not rendered.
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/soccer.png
Diff not rendered.
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/square.png
Diff not rendered.
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/star.png
Diff not rendered.
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/swimming.png
Diff not rendered.
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/tennis.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/theatre.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/toilets.png
Diff not rendered.
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/town.png
Diff not rendered.
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/triangle.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/village.png
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/water.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/wetland.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/maki/zoo.png
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/moonSmall.jpg
Diff not rendered.
1 change: 0 additions & 1 deletion build/cesiumassets/Assets/Textures/pin.svg
Diff not rendered.
Binary file removed build/cesiumassets/Assets/Textures/waterNormals.jpg
Diff not rendered.
Diff not rendered.
1 change: 0 additions & 1 deletion build/cesiumassets/Assets/approximateTerrainHeights.json

This file was deleted.

1 change: 0 additions & 1 deletion build/cesiumassets/ThirdParty/Workers/basis_transcoder.js

This file was deleted.

1 change: 0 additions & 1 deletion build/cesiumassets/ThirdParty/Workers/package.json

This file was deleted.

2 changes: 0 additions & 2 deletions build/cesiumassets/ThirdParty/Workers/pako_deflate.min.js

This file was deleted.

This file was deleted.

2 changes: 0 additions & 2 deletions build/cesiumassets/ThirdParty/Workers/pako_inflate.min.js

This file was deleted.

This file was deleted.

1 change: 0 additions & 1 deletion build/cesiumassets/ThirdParty/Workers/z-worker-pako.js

This file was deleted.

Binary file removed build/cesiumassets/ThirdParty/basis_transcoder.wasm
Binary file not shown.
Binary file removed build/cesiumassets/ThirdParty/draco_decoder.wasm
Binary file not shown.

This file was deleted.

Loading