1.1.5 • Published 1 year ago

@vladvesa/vue-maplibre-gl v1.1.5

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

vue-maplibre-gl

npm TypeScript vue2

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 @vladvesa/vue-maplibre-gl maplibre-gl

Default import

Global Install:

import VueMaplibreGl from '@vladvesa/vue-maplibre-gl';

app.use(VueMaplibreGl);

Add CSS:

@import 'vue-maplibre-gl/dist/style.css';

Use specific components:

import { MglMap } from '@vladvesa/vue-maplibre-gl';

app.component('MglMap', MglMap);

or in a parent components .vue file

<script>
	import { MglMap } from '@vladvesa/vue-maplibre-gl';

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

Usage

See /dev/serve.vue for a real world example.

Demo

git clone https://github.com/vladvesa/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

  • Generate separate css file to be included (currently, you have to use scss)
  • Usage examples
  • Demo
  • API documentation
  • Support v-model:... for some basic props
  • Add layer events
  • Add Web-types
  • Add frame rate control

License

MIT

1.1.5

1 year ago

1.1.4

1 year ago

1.1.3

1 year ago

1.1.2

1 year ago

1.1.1

1 year ago

1.1.0

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago