Skip to content

sozerodev/react-cesium-demo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

react-cesium-demo

This is React boilerplate for Cesium

Explain

Setup

  1. clone this repository to your local
  2. install node modules
    npm install
    
  3. run project
    npm run start
    

etc

  • when trying to import something, you may use absolute path not relative path

    // Bad
    import Viewer from "../../Viewer";
    
    // Good
    import Viewer from "@engines/Viewer";