Skip to content

Getting Started

Vesium is a high-performance library designed for Cesium, adopting the Composable pattern consistent with VueUse. It integrates Cesium seamlessly using Hooks, providing type-safe APIs that significantly simplify the complexity of using Cesium in Vue applications.

🚧 Note: This project is actively under development, and the API may change frequently.

Prerequisites

Before you start, ensure you have the following:

Installation

Using Package Managers

bash
# NPM
npm install cesium @vueuse/core @vesium/core

# Yarn
yarn add cesium @vueuse/core @vesium/core

# pnpm
pnpm add cesium @vueuse/core @vesium/core

Using CDN

You can also use Vesium via CDN:

html
<!-- Load Cesium core library -->
<script src="https://unpkg.com/cesium/Build/Cesium/Cesium.js"></script>

<!-- Load VueUse dependencies -->
<script src="https://unpkg.com/@vueuse/shared"></script>
<script src="https://unpkg.com/@vueuse/core"></script>

<!-- Load Vesium library -->
<script src="https://unpkg.com/@vesium/shared"></script>
<script src="https://unpkg.com/@vesium/core"></script>

When using CDN, all functionalities are exposed through the global object window.Vesium.

Basic Usage

Below is a simple example demonstrating how to use Vesium in a Vue project:

vue
<script setup>
import { createViewer, useCameraState } from '@vesium/core';
import { ref, watch } from 'vue';

// Create container reference
const cesiumContainer = ref(null);

// Create a Cesium Viewer instance
const viewer = createViewer(cesiumContainer);

// Use camera control hook
const { position, heading, pitch, roll } = useCameraState(viewer);

// Watch for camera position changes
watch(position, (newPosition) => {
  console.log('Camera position updated:', newPosition);
});
</script>

<template>
  <div ref="cesiumContainer" style="width: 100%; height: 100%" />
</template>

Module Overview

Vesium includes the following main modules:

  • @vesium/core: Main functionality module, providing basic Cesium operation hooks

    • createViewer: Creates a Cesium viewer instance
    • useCameraState: Camera state control
    • useEntity: Entity management
    • useImageryLayer: Imagery layer control
    • For more features, refer to the API documentation
  • @vesium/plot: Drawing tools module

    • Supports drawing geometric shapes such as points, lines, and polygons
    • Provides capabilities for editing and styling graphics
  • @vesium/serialize: Serialization tools module

    • Supports saving and restoring scene states
    • Provides data import/export functionality
  • @vesium/special: Effects module

    • Provides material effects
    • Post-processing effects
    • Custom primitive rendering

Each module is optimized for on-demand loading and can be used based on your specific needs. For detailed API documentation and usage examples, refer to the specific module's documentation.