GlobalMap

技术:基于OpenLayers和Cesium开发的2/3D地图demo。功能:地图的底图切换,地图放大缩小,点线面的标记,线的距离测量,区域的面积测量。

入门
GitHub在线演示
Stars:8
License:未知
更新:2025/11/13

README

Global_Map

This project is initialized with Ant Design Pro. Follow is the quick guide for how to use.

Environment Prepare

Install node_modules:

npm install

or

yarn

Provided Scripts

Ant Design Pro provides some useful script to help you quick start and build with web project, code style check and test.

Scripts provided in package.json. It's safe to modify or add additional script:

Start project

npm start

or

yarn start

Build project

npm run build

or

yarn run build

Check code style

npm run lint

or

yarn run lint

You can also use script to auto fix some lint error:

npm run lint:fix

or

yarn run lint:fix

Test code

npm test

or

yarn test