Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Vue.js 2 Web Development Projects

You're reading from   Vue.js 2 Web Development Projects Learn Vue.js by building 6 web apps

Arrow left icon
Product type Paperback
Published in Nov 2017
Publisher Packt
ISBN-13 9781787127463
Length 398 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
CHAU GUILLAUME CHAU GUILLAUME
Author Profile Icon CHAU GUILLAUME
CHAU GUILLAUME
Arrow right icon
View More author details
Toc

Embedding Google Maps


In this second part, we are going to add a map to the home page and control it through the Vuex store.

Installation

To integrate Google Maps, we will need an API and a third-party package called vue-googlemaps.

Getting the API key

To use Google Maps in our app, we need to enable the corresponding API and generate an API key:

  1. In the Google Developers Console, go back to the APIs & services|Library and click on Google Maps JavaScript API under the Google Maps APIs section. On the API page, click on the Enable button.
  2. Then go to Credentials and create a new API key.

Installing the library

We will now install the vue-googlemaps library, which will help us integrate Google Maps into our app.

  1. In the app, install the vue-googlemaps package with the following command:
      npm i -S vue-googlemaps
  1. In the main main.js file, you can enable it in the app with the API key from Google:
      import VueGoogleMaps from 'vue-googlemaps'

Vue.use(VueGoogleMaps, {
load: {
          apiKey: ...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime