UNPKG

s2maps-gpu

Version:

S2 Maps GPU - An open source, high-performance, and GPU-accelerated map engine for rendering large-scale, interactive maps.

12 lines (11 loc) 360 B
import VueS2MapGPU from './S2Map.vue'; export * from './S2Map.vue'; /** * Install the Vue S2MapGPU Component globally * @param app - The Vue app instance */ export const vueInstall = (app) => { // Register the component globally app.component('S2MapGPU', VueS2MapGPU); // You could also provide global properties or directives here if needed };