/vue-cesium

Load the Cesium official offline package or other third-party Cesium packages

Primary LanguageVueMIT LicenseMIT

VUE CESIUM

Load the Cesium official build package or other third-party Cesium packages (such as the Superap WebGL build package) to the Vue component.

npm Travis Package Quality npm license

Languages

Documentation

https://zouyaoji.top/vue-cesium

Get Start

Installation

npm i --save vue-cesium

Initialization

import Vue from 'vue'
import VueCesuium from 'vue-cesium'

Vue.use(VueCesium, {
  // cesiumPath is the path of the Cesium library, such as
  // cesiumPath: '/statics/Cesium'
  // use online reference for http
  // cesiumPath: 'http://support.supermap.com.cn:8090/webgl/Build'
  // use online reference for https
  cesiumPath: 'https://zouyaoji.top/vue-cesium'
})

Usage

<template>
  <div class="content">
    <cesium-viewer>
    </cesium-viewer>
  </div>
</template>

<style>
.content {
  background-color: #f9f9f9;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
</style>

Contributing

Contributing Guide

License

MIT License

Copyright (c) 2018-present, zouyaoji 370681295@qq.com

Thanks

I referenced a lot from the vue-baidu-map project. Thanks very much!