GmapVue Vue 2 API notes
The Vue 2 package is frozen and no longer actively maintained because Vue 2 reached EOL.
Use this API documentation only for existing Vue 2 applications that cannot migrate yet. New applications should use @gmap-vue/v3.
Vue 2 port history
GmapVue started as a fork of the popular vue2-google-maps project so community fixes could continue after the original project slowed down. That history is preserved here for existing Vue 2 users, but new feature development now belongs in the Vue 3 package.
Breaking changes
v3.0.0
autobindAllEventsconfig option was renamed toautoBindAllEventsvueGoogleMapsInitname was renamed toGoogleMapsCallbackgmapApifunction was renamed togetGoogleMapsAPIMapElementMixinnow is exported fromcomponentsobject instead ofhelpersobjectcustomCallbackconfig option was added to reuse existing Google Maps API that already loaded, eg from an HTML file
v2.0.0
-
All components were rewriting in SFC (
.vue) -
MarkerClusterwas renamed toCluster -
@google/markerclustererpluswas replace for@googlemaps/markerclusterer -
The plugin exports two main objects:
components: it has all components and mountable mixin)helpers: it has promise lazy factory function, gmapApi function and map element mixin
-
The plugin now exports by default the install function, this means that you can do the following
-
From v2.0.0 and above, the
autocompletecomponent uses thedefaultslot instead of the namedinputslot, from v1.5.0 theinputslot on the autocomplete component still works.import GmapVue from 'gmap-vue';instead of
import * as GmapVue from 'gmap-vue';
Installation
npm
npm install gmap-vue --save
yarn
yarn add gmap-vue
Manually
Just download dist/gmap-vue.js file and include it from your HTML.
<script src="./gmap-vue.js"></script>
jsdelivr
You can use a free CDN like jsdelivr to include this plugin in your html file
<script src="https://cdn.jsdelivr.net/npm/gmap-vue@1.2.2/dist/gmap-vue.min.js"></script>
unpkg
You can use a free CDN like unpkg to include this plugin in your html file
<script src="https://unpkg.com/gmap-vue@1.2.2/dist/gmap-vue.js"></script>
Be aware that if you use this method, you cannot use TitleCase for your components and your attributes.
That is, instead of writing <GmapMap>, you need to write <gmap-map>.