Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@reearth/cesium-mvt-imagery-provider

Package Overview
Dependencies
Maintainers
6
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@reearth/cesium-mvt-imagery-provider

Custom ImageryProvider for Mapbox Vector Tiles (extended for Re:Earth)

  • 1.5.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
65
decreased by-73.79%
Maintainers
6
Weekly downloads
 
Created
Source

cesium-mvt-imagery-provider

Usage

const imageryProvider = new MVTImageryProvider({
  urlTemplate: "http://localhost:8080/sample_mvt/{z}/{x}/{y}.mvt",
  layerName: "layerName", // or "layerName1,layerName2,layerName3"
  worker: true, // by default false
  credit: "cesium.js",
});

const layers = viewer.scene.imageryLayers;
const currentLayer = layers.addImageryProvider(imageryProvider);
currentLayer.alpha = 0.5;

// Call `layers.remove(currentLayer);` when it is unnecessary.

See example directory for more details.

Development

  1. yarn
  2. yarn unlink && yarn build && yarn run link
  3. cd ./example
  4. yarn && yarn dev
  5. Then example cesium application is started

If you run example, you need to set sample MVT data to ./example/public. And you should change layerName option for MVTImageryProvider in ./example/src/Imagery.tsx.

If you want to run this library on your vite project, you can do it like the following.

  1. yarn build
  2. cp ./dist ~/your_project && rm -rf node_modules/.vite
  3. Restart your project server

FAQs

Package last updated on 28 Mar 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc