vue-mapbox
Version:
> Combine powers of [Vue.js](https://vuejs.org/) and [Mapbox Gl JS](https://mapbox.com/mapbox-gl-js)
19 lines (15 loc) • 320 B
JavaScript
import controlMixin from "./controlMixin";
export default {
name: "FullscreenControl",
mixins: [controlMixin],
props: {
container: {
type: HTMLElement,
default: undefined
}
},
created() {
this.control = new this.mapbox.FullscreenControl(this.$props);
this.$_addControl();
}
};