Lightweight, typed, Google Maps components for Vue 3
npm install v3-gmaps- Docs: v3-gmaps Docs
- Example: StackBlitz
- Demo: StackBlitz
``bash`npm
npm install v3-gmapsyarn
yarn add v3-gmapspnpm
pnpm add v3-gmaps
This plugin can be installed like any Vue plugin:
`js
import { createApp } from 'vue';
import App from './App.vue';
import gmaps from 'v3-gmaps';
// Optional stylesheet needed for showing errors and the Popup component
import 'v3-gmaps/dist/style.css';
const app = createApp(App);
app.use(gmaps, { key: 'YOUR_GOOGLE_MAPS_API_KEY' });
app.mount('#app');
`
`vue
``
This project is licensed under the MIT License - see the LICENSE file for details