1.0.4 • Published 2 months ago

@nsc-earth-2/primitive-geojson v1.0.4

Weekly downloads
-
License
MIT
Repository
-
Last release
2 months ago

@nsc-earth-2/primitive-geojson

@nsc-earth-2/primitive-geojson is a JavaScript library based on Cesium that parses GeoJSON and TopoJSON data into visualizable Cesium entities, including points, lines, polygons, labels, etc. It can be installed as an npm package and used directly in Cesium projects. 中文 Readme

Installation

Install using npm:

npm install @nsc-earth-2/primitive-geojson

Usage

To use @nsc-earth-2/primitive-geojson in your project, simply import it like any other module:

import { GeoJsonPrimitiveLayer } from "@nsc-earth-2/primitive-geojson";

Then create a new instance of the GeoJsonPrimitiveLayer class and load your GeoJSON data:

const layer = new GeoJsonPrimitiveLayer();
layer.load("path/to/data.json").then(() => {
  // Do something when the data is loaded
});

See the API documentation for more details on usage and available options.