├── readme.md ├── .idea └── vcs.xml └── package.json /readme.md: -------------------------------------------------------------------------------- 1 | 使用方法很简单 2 | ``` 3 | 4 | 5 | Cesium.viewerCesiumNavigationMixin(viewer,{}); 6 | ``` 7 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cesiumnavigation", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/solocao/viewerCesiumNavigationMixin.git" 12 | }, 13 | "author": "", 14 | "license": "ISC", 15 | "bugs": { 16 | "url": "https://github.com/solocao/viewerCesiumNavigationMixin/issues" 17 | }, 18 | "homepage": "https://github.com/solocao/viewerCesiumNavigationMixin#readme" 19 | } 20 | --------------------------------------------------------------------------------