JSPM

@giro3d/piero-plugin-cityjson

1.0.0-beta.2
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2
  • Score
    100M100P100Q52313F
  • License MIT

Load CityJSON datasets in Piero

Package Exports

  • @giro3d/piero-plugin-cityjson

Readme

A versatile web library to visualize 3D geospatial data in the browser.

Pipeline status NPMJS latest package badge Matrix chat

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(),
    ]
});