Custom tooltip on marker for google maps in React

Today we’ll show you how to add a custom tooltip on marker for google maps in React. It is also known as the infoWindow in google maps.

In the previous article, we have explained how to add multiple custom markers to google maps. Here we will use the same example with slight changes. We will also set the title on marker in google maps using ReactJS.

Custom tooltip on marker for google maps

  1. Create react application
  2. Add multiple custom markers
  3. Add tooltip on marker
  4. Output

1. Create react application

Let’s create a react application using create-react-app npm package. Run the following code to create a react app.

2. Add multiple custom markers

First, we will write a logic to add multiple custom markers to google maps. Refer the following article for step by step instruction.

Add Multiple Custom Markers to Google Maps in ReactJS

3. Add tooltip on marker

Now, we have to update the marker object for tooltip. We will also set the title on markers.

Let’s slightly update the marker list to add title and tooltip on marker in GMap.js file.

We have to add the title attribute in the google.maps.Marker and create an info window to manage show/hide window on click of the marker. We will use the click event listener to open the info window.

Check the following code of the createMarker function in the same file.

4. Output

Run the project and check the output in the browser.

Output - Custom tooltip on marker for google maps in React - Clue Mediator
Output – Custom tooltip on marker for google maps in React – Clue Mediator

That’s it for today.
Thank you for reading. Happy Coding..!!

Demo & Source Code

Github Repository StackBlitz Project

If you found value in this article,
you can support us by buying me a coffee! ☕

You may also like...

2 Responses

  1. Adhithiyan says:

    thank you soooo much it worked for me thanks a lot

Leave a Reply

Your email address will not be published. Required fields are marked *