@gmgis/gm-common
v2.0.1
Published
[**🇨🇳 中文**](./README_zh.md) | [**🇬🇧English**](./README.md)
Readme
GM-SDK
GM-SDK is based on the open source project Cesium for the second development of two three-dimensional WebGis application framework , the framework optimizes the use of Cesium and adds some additional features , designed for developers to quickly build WebGis application.
Tips:This SDK is JS+GIS framework package. Developers need to have some front-end technology and GIS related technologyRun examples
yarn run build
yarn run serverInstallation
NPM / YARN (Recommend)
Installing with NPM or YARN is recommended and it works seamlessly with webpack.
yarn add @gmgis/gm-sdk
-------------------------
npm install @gmgis/gm-sdkimport * as GM from '@gmgis/gm-sdk'
import '@gmgis/gm-sdk/dist/gm.min.css'Configuration
The configuration is mainly used in the
NPM / YARNway
Since the GM framework sets CESIUM_BASE_URL to ./libs/gm-sdk/resources/ , you need to copy Cesium related static resources files: Assets , Workers , ThirdParty to libs/gm-sdk/resources directory of the project to ensure that the 3D scene can be rendered properly. You can also use GM.config.baseUrl to set the static resource base related to Cesium .
Vue3.x
// vue.config.js
const path = require('path')
const CopywebpackPlugin = require('copy-webpack-plugin')
const gmgisDist = './node_modules/@gmgis'
module.exports = {
chainWebpack: (config) => {
config.plugin('copy').use(CopywebpackPlugin, [
{
patterns: [
{
from: path.join(gmgisDist, 'gm-sdk/dist/resources'),
to: path.join(__dirname, 'dist', 'libs/gm-sdk/resources'),
},
],
},
])
},
}vite
// vite.config.js
import { defineConfig } from 'vite'
import GM from '@gmgis/vite-plugin-gm'
export default defineConfig({
plugins: [GM()],
})Start
global.GM = GM
GM.ready({}).then(()=>{
let viewer = new GM.Viewer()
})Support
if gm-sdk can bring benefits to you, please support it ~
