Custom Google Maps Info Windows

Part 19 of 48 in API Driven Development With Laravel and VueJS
Dan Pastori avatar
Dan Pastori November 9th, 2017
⚡️ Updated content is available We learned a lot since we originally wrote this article. We now have this updated for Laravel 10, Vue 3/NuxtJS 3, and Capacitor 3.

Building off of our last tutorial where we added custom markers to the map: https://serversideup.net/custom-markers-google-map/, the next step is to add an info window to these markers when clicked. This should be a pretty quick tutorial since we will just be binding an info window to a marker on click.

Step 1: Open CafeMap.vue

The /resources/assets/js/components/cafes/CafeMap.vue is where all of our map logic will be located. In the buildMarkers() method, we create all of the markers. Well we need to bind the info windows to the marker, so this is where our coding will take place.

First, we will need to add an infoWindows array to the data for the CafeMap.vue component. We will store all of our info windows in that array so we can call methods on those when needed. Our data should now look like:

data(){
  return {
    markers: [],
    infoWindows: []
  }
},

Next, navigate to the buildMarkers() method in the for loop. In there, find the marker declaration. Below that, we will add the following code:

/*
  Create the info window and add it to the local
  array.
*/
let infoWindow = new google.maps.InfoWindow({
  content: this.cafes[i].name
});

this.infoWindows.push( infoWindow );

What this does is declare an info window object that declares the name of the cafe. If you look at the Google Docs: Info Windows  |  Google Maps JavaScript API  |  Google Developers for info windows, you can add HTML mark up and really customize the look and feel of the info window. We will be doing this in a style update update, but for now, we are just getting an info window to display.

Now, we just need to bind a click to the marker to open the info window. To do that, right below the last code added add:

/*
  Add the event listener to open the info window for the marker.
*/
marker.addListener('click', function() {
  infoWindow.open(this.map, this);
});

What this does is when the user clicks on the marker, it opens the info window on the map, above this which is referencing the marker.

When you click on one of the markers on the map, you should see an info window with the name of the cafe it represents like below:

Conclusion

To add an info window is pretty simple, making them look good isn’t hard either since we will be using HTML. The next part of the tutorial, we will be doing a design overhaul and any tweaks I’ll document in that tutorial. For now, enjoy the Google Maps Info Windows on your map and make sure to check out the code here: GitHub – serversideup/roastandbrew

Keep Reading
View the course View the Course API Driven Development With Laravel and VueJS
Up Next → SPA Tutorial Update 2

Support future content

The Ultimate Guide to Building APIs and Single-Page Applications with Laravel + VueJS + Capacitor book cover.

Psst... any earnings that we make off of our book is being reinvested to bringing you more content. If you like what you read, consider getting our book or get sweet perks by becoming a sponsor.

Written By Dan

Dan Pastori avatar Dan Pastori

Builder, creator, and maker. Dan Pastori is a Laravel certified developer with over 10 years experience in full stack development. When you aren't finding Dan exploring new techniques in programming, catch him at the beach or hiking in the National Parks.

Like this? Subscribe

We're privacy advocates. We will never spam you and we only want to send you emails that you actually want to receive. One-click unsubscribes are instantly honored.