Giter Club home page Giter Club logo

mvtimageryprovider's Introduction

Render Mapbox style in CesiumJs. This project is very simple, because the complex rendering task is compeleted by mapbox-gl-js, you should also check Mapbox-vector-tiles-basic-js-renderer for more detail.

中文README

How to use

Clone the project and then place the file in src to appropriate folder.

  1. construct ImageryProvider instance

    let options = {
      // Required. Mapbox Style Object.
      style: Object,
      // Optional, may be undefined or unset. intercepts tile request, so you can make some modifications to the request, for example adding custom header
      requestTransformFn: (url) => {
       return {url: url, headers: {'myheader': 'header-content'}, credentials: ''}
      }
    }
    let provider = new ImageryProvider(options)
  2. add ImageryProvider instance to Cesium Viewer

    cesiumViewer.imageryLayer.addProvider(provider)
  3. destroy provider if not in used

    provider.destroy()

Example

There is an simple example, see example folder. run:

git clone https://github.com/kikitte/MVTImageryProvider.git
cd MVTImageryProvider/example
npm i
npm start

Screenshots

Screenshot_20201012_172140

Screenshot_20201012_172222

Known Issue

  1. raster layer & background layer are not supported yet.

  2. WARNING: Too many active WebGL contexts. Oldest context will be lost

    The maximum number of webgl context is 16 in chrome, and each MVTImageryProvider has its own webgl context for rendering. If too many MVTImageryProvider instance is created, the above warning may be raised and errors will occure in cesiumjs. So destroy the unused provider first, ensure that the total webgl context number not exceeds the limitation of your browser.

Credit

https://github.com/landtechnologies/Mapbox-vector-tiles-basic-js-renderer

mvtimageryprovider's People

Contributors

kikitte avatar hongfaqiu avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.