How can I use JSX as the content for an InfoWindow in the Google Maps API

0 votes
Can you tell me How can I use JSX as the content for an InfoWindow in the Google Maps API?
Feb 12 in Node-js by Nidhi
• 13,800 points
131 views

1 answer to this question.

0 votes

To use JSX as content for an InfoWindow in Google Maps API use the following steps :

Render JSX to HTML: JSX content needs to be rendered to an HTML string or element for the InfoWindow because Google Maps API expects HTML, not JSX.

Render JSX using React: ReactDOM.render() allows you to render JSX to a DOM element. You then set that as the content for your InfoWindow.

Code:

import React from 'react';

import ReactDOM from 'react-dom';

function App() {

  useEffect(() => {

    const map = new google.maps.Map(document.getElementById("map"), {

      zoom: 8,

      center: { lat: -34.397, lng: 150.644 },

});

    const infoWindow = new google.maps.InfoWindow();

    // JSX content for the InfoWindow

    const content = (

      <div>

        <h1>InfoWindow Title</h1>

        <p>This is an InfoWindow created using JSX!</p>

      </div>

    );

// Create a div element to render the JSX into

    const div = document.createElement("div");

    // Render the JSX into the div element

    ReactDOM.render(content, div);

    // Set the rendered content as the InfoWindow's content

    infoWindow.setContent(div);

    const marker = new google.maps.Marker({

position: { lat: -34.397, lng: 150.644 },

      map: map,

    });

    marker.addListener("click", () => {

      infoWindow.open(map, marker);

    });

  }, []);

  return <div id="map" style={{ height: "500px" }} />;

}

export default App;
answered Feb 12 by Kavya

Related Questions In Node-js

0 votes
1 answer

How do I use HTML as the view engine in Express?

Hello @kartik, To make the render engine accept ...READ MORE

answered Jul 17, 2020 in Node-js by Niroj
• 82,840 points
10,424 views
0 votes
1 answer

How can I install the Babel plugin for JSX syntax?

Use the following commands: npm install @babel/preset-react --save-dev Steps ...READ MORE

answered Mar 12 in Node-js by Sahil
56 views
0 votes
1 answer

How to use the call effect in redux-saga for API requests?

To write an action creator that handles ...READ MORE

answered Mar 19 in Node-js by Tanvi
55 views
0 votes
0 answers
0 votes
1 answer

Why does the useEffect hook trigger twice in React?

This behavior is intentional and stems from ...READ MORE

answered Feb 12 in Node-js by Navya
112 views
0 votes
1 answer

Why does React's useState hook use const instead of let?

The useState Hook is typically used with ...READ MORE

answered Feb 12 in Node-js by Navya
151 views
0 votes
1 answer
0 votes
1 answer

Who's responsible for the next View?

In the MVC architecture, the Controller determines ...READ MORE

answered Feb 12 in Node-js by Navya
65 views
0 votes
1 answer
0 votes
1 answer

How can I check if an array contains a particular string in TypeScript?

You can use includes() method, which checks ...READ MORE

answered Feb 10 in Node-js by Navya
91 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP