--- home: true heroImage: 'assets/logo.jpg' tagline: A library that contains Google Maps reactive components for VueJS 3 actionText: Read Docs actionLink: /docs/ ---
View example
## Before starting It is important to notice that this repository was forked by the community to keep the library alive. You can get more infor about our decision [in this GitHub discussion](https://github.com/NathanAP/vue-google-maps-community-fork/discussions/1). Since this library is currently maintained by the community, every help is needed and appreciated! You can follow everything in our [GitHub](https://github.com/NathanAP/vue-google-maps-community-fork). ## Installation You can install this library using npm: ``` npm install vue-google-maps-community-fork ``` ### Pre-requisites To use this library you will need an API Key. You can learn how to get one [here](https://developers.google.com/maps/documentation/javascript/get-api-key). ### Configure your enviroment In your `main.js` or inside a Nuxt plugin: ```js import { createApp } from 'vue' import VueGoogleMaps from 'vue-google-maps-community-fork' const app = createApp(App) app .use(VueGoogleMaps, { load: { key: 'YOUR_API_KEY_COMES_HERE', }, }) .mount('#app') ``` ### Great! Now you can use anywhere in your components Here are some examples: ```vue ```