JSPM

  • Created
  • Published
  • Downloads 470
  • Score
    100M100P100Q99183F
  • License MIT

Vue 3 plugin for maplibre-gl

Package Exports

  • vue-maplibre-gl
  • vue-maplibre-gl/dist/vue-maplibre-gl.es.js
  • vue-maplibre-gl/dist/vue-maplibre-gl.umd.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (vue-maplibre-gl) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

vue-maplibre-gl

npm TypeScript size vue3 MaplibreGL-JS

A small Vue 3 plugin for maplibre-gl-js. Only additional dependency is mitt.

Features

  • Supports MapLibre GL JS v2.x
  • Typescript support
  • Components for map, controls, sources, markers and layers
  • Support for custom controls
  • Customizable style switch which reloads sources and layers automatically
  • Frame rate control included
  • Support for multiple instances and global access by useMap(key: string | symbol)
  • Small size

Table of contents

Installation

yarn add vue-maplibre-gl maplibre-gl mitt

Default import

Global Install:

import VueMaplibreGl from 'vue-maplibre-gl'

app.use(VueMaplibreGl)

Add CSS:

@import "~maplibre-gl/dist/maplibre-gl.css";
@import "~vue-maplibre-gl/dist/vue-maplibre-gl.css";

Use specific components:

import { MglMap } from 'vue-maplibre-gl'

app.component('MglMap', MglMap)

or in a parent components .vue file

<script>
    import { MglMap } from 'vue-maplibre-gl'

    export default {
        components: {
            MglMap
        },
        // ...
    }
</script>

Usage

See src/App.vue for a real world example.

Demo

git clone https://github.com/razorness/vue-maplibre-gl.git
cd vue-maplibre-gl
yarn
yarn dev

PRs welcome ♥

If you have ideas, improvements, suggestions etc. don't hesitate to open a pull request.

Todos

License

MIT