npm install @vis.gl/react-google-maps

React components and hooks for the Google Maps JavaScript API

About @vis.gl/react-google-maps

The @vis.gl/react-google-maps package is an essential toolkit for developers looking to integrate Google Maps into their React applications with ease. This npm package provides a robust set of React components and hooks designed to leverage the full potential of the Google Maps JavaScript API. By utilizing this library, developers can efficiently render interactive maps, place markers, and overlay rich geographical data directly within their React projects. The components are optimized for performance and flexibility, allowing for a seamless integration and customization according to the specific needs of the application.

To start using @vis.gl/react-google-maps in your project, simply run the command `npm install @vis.gl/react-google-maps`. This command installs the package into your project, adding powerful mapping capabilities accessible through straightforward React components. Once installed, developers can immediately begin to implement various map functionalities such as displaying locations, drawing routes, and handling user interactions with minimal coding effort. This ease of installation and use makes it an ideal choice for projects requiring reliable and dynamic map solutions.

The benefits of using @vis.gl/react-google-maps extend beyond just ease of integration. This package supports a range of customization options to enhance the user experience. Developers can control the appearance and behavior of the map through various props and options, ensuring that the map perfectly aligns with the visual identity of the application. Additionally, the use of React hooks allows for efficient state management and re-rendering, which is crucial for dynamic, data-driven applications. Whether for displaying store locations, tracking delivery routes, or visualizing complex geographical data, @vis.gl/react-google-maps provides a powerful, flexible, and easy-to-use solution.

More from visgl

visgl npm packages

Find the best node modules for your project.

Search npm

@vis.gl/react-google-maps

React components and hooks for the Google Maps JavaScript...

Read more

Dependencies

Core dependencies of this npm package and its dev dependencies.

@types/google.maps, fast-deep-equal, @googlemaps/jest-mocks, @testing-library/jest-dom, @testing-library/react, @testing-library/user-event, @types/jest, @typescript-eslint/eslint-plugin, @typescript-eslint/parser, eslint, eslint-config-prettier, eslint-plugin-import, eslint-plugin-react, eslint-plugin-react-hooks, jest, jest-environment-jsdom, microbundle, npm-run-all, prettier, react, react-dom, ts-jest, typescript, vite

Documentation

A README file for the @vis.gl/react-google-maps code repository. View Code

React Components for the Google Maps JavaScript API

MIT License

This is a TypeScript / JavaScript library to integrate the Maps JavaScript API into your React application. It comes with a collection of React components to create maps, markers and infowindows, and a set of hooks to use some of the Maps JavaScript API Services and Libraries.

Installation

This library is available on npm as @vis.gl/react-google-maps.

npm install @vis.gl/react-google-maps

or

yarn add @vis.gl/react-google-maps

(PowerShell users: since @ has a special meaning in PowerShell, the package name has to be quoted)

Usage

Import the APIProvider and wrap it around all components that should have access to the Maps JavaScript API. Any component within the context of the APIProvider can use the hooks and components provided by this library.

To render a simple map, add a Map component inside the APIProvider. Within the Map component, you can then add further components like Marker, AdvancedMarker, or InfoWindow to render content on the map.

For more advanced use-cases you can even add your own components to the map that make use of google.maps.OverlayView or google.maps.WebGlOverlayView.

import {APIProvider, Map, Marker} from '@vis.gl/react-google-maps';

function App() {
  const position = {lat: 53.54992, lng: 10.00678};

  return (
    <APIProvider apiKey={'YOUR API KEY HERE'}>
      <Map defaultCenter={position} defaultZoom={10}>
        <Marker position={position} />
      </Map>
    </APIProvider>
  );
}

export default App;

Please see our documentation or examples for more in-depth information about this library.

Using other libraries of the Maps JavaScript API

Besides rendering maps, the Maps JavaScript API has a lot of additional libraries for things like geocoding, routing, the Places API, Street View, and a lot more.

These libraries are not loaded by default, which is why this module provides the useMapsLibrary() hook to handle dynamic loading of additional libraries.

For example, if you just want to use the google.maps.geocoding.Geocoder class in a component and you don't even need a map, it can be implemented like this:

import {useMap, useMapsLibrary} from '@vis.gl/react-google-maps';

const MyComponent = () => {
  // useMapsLibrary loads the geocoding library, it might initially return `null`
  // if the library hasn't been loaded. Once loaded, it will return the library
  // object as it would be returned by `await google.maps.importLibrary()`
  const geocodingLib = useMapsLibrary('geocoding');
  const geocoder = useMemo(
    () => geocodingLib && new geocodingLib.Geocoder(),
    [geocodingLib],
  );

  useEffect(() => {
    if (!geocoder) return;

    // now you can use `geocoder.geocode(...)` here
  }, [geocoder]);

  return <></>;
};

const App = () => {
  return (
    <APIProvider apiKey={'YOUR API KEY HERE'}>
      <MyComponent />
    </APIProvider>
  );
}

Examples

Explore our examples directory on GitHub or the examples on our website for full implementation examples.

Terms of Service

@vis.gl/react-google-maps uses Google Maps Platform services. Use of Google Maps Platform services through this library is subject to the Google Maps Platform Terms of Service.

This library is not a Google Maps Platform Core Service. Therefore, the Google Maps Platform Terms of Service (e.g., Technical Support Services, Service Level Agreements, and Deprecation Policy) do not apply to this library.

Support

This library is offered via an open source license. It is not governed by the Google Maps Platform Support Technical Support Services Guidelines, the SLA, or the Deprecation Policy (however, any Google Maps Platform services used by this library remain subject to the Google Maps Platform Terms of Service).

If you find a bug, or have a feature request, please file an issue on GitHub. If you would like to get answers to technical questions from other Google Maps Platform developers, feel free to open a thread in the discussions section on GitHub or ask a question through one of our developer community channels.

If you'd like to contribute, please check the Contributing guide.

You can also discuss this library on our Discord server.