Package Exports
- @giro3d/piero-plugin-cityjson
Readme
A versatile web library to visualize 3D geospatial data in the browser.
piero-plugin-cityjson
Plugin for @giro3d/piero to add support for CityJSON datasets.
Getting started
Register the CityJSONLoader module when starting the app:
// index.ts
import { createPieroApp } from '@giro3d/piero';
import { CityJSONLoader } from '@giro3d/piero-plugin-cityjson';
createPieroApp({
...
modules: [
new CityJSONLoader(),
]
});