vue-maplibre-gl
A vue plugin for maplibre-gl-js. Only additional dependency is mitt.
Size: 36 KB
Features
- Typescript support
- Components for map, controls, sources, marker 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)
Table of contents
Installation
yarn add vue-maplibre-gl maplibre-gl
Default import
Global Install:
import VueMaplibreGl from 'vue-maplibre-gl'
app.use(VueMaplibreGl)
Add SCSS:
@import "~vue-maplibre-gl/src/css/maplibre";
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 /dev/serve.vue for a real world example.
Demo
git clone https://github.com/razorness/vue-maplibre-gl.git
cd vue-maplibre-gl
yarn
yarn serve
PRs welcome ♥
If you have ideas, improvements, suggestions etc. don't hesitate to open a pull request.
Todos
License
MIT