https://github.com/pyjun01/react-google-map-wrapper
React component library for rendering Google Maps
https://github.com/pyjun01/react-google-map-wrapper
google-map google-map-react google-maps google-maps-api google-maps-javascript react react-google-map react-google-maps
Last synced: about 1 month ago
JSON representation
React component library for rendering Google Maps
- Host: GitHub
- URL: https://github.com/pyjun01/react-google-map-wrapper
- Owner: pyjun01
- License: mit
- Created: 2023-11-11T11:48:58.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-05-02T15:00:06.000Z (11 months ago)
- Last Synced: 2025-09-18T02:23:58.566Z (6 months ago)
- Topics: google-map, google-map-react, google-maps, google-maps-api, google-maps-javascript, react, react-google-map, react-google-maps
- Language: TypeScript
- Homepage: https://pyjun01.github.io/react-google-map-wrapper/
- Size: 588 KB
- Stars: 16
- Watchers: 2
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# [React Google Map Wrapper](https://pyjun01.github.io/react-google-map-wrapper/) · [](https://github.com/pyjun01/react-google-map-wrapper/blob/main/LICENSE) [](https://www.npmjs.com/package/react-google-map-wrapper)
`react-google-map-wrapper` is a React component library for rendering Google Maps.
You can see an example [here](https://pyjun01.github.io/react-google-map-wrapper/docs/examples/basic/).
```tsx
import { Suspense } from 'react';
import { GoogleMap, GoogleMapApiLoader, Marker } from 'react-google-map-wrapper';
function Map() {
return (
);
}
function App() {
return (
}>
{/* Load the google map api */}
);
}
```
## Installation
```bash
npm install react-google-map-wrapper # or yarn add react-google-map-wrapper or pnpm add react-google-map-wrapper
```
> **If you're using React v18, please install version `1.0.7`.**
## Documentation
You can find the documentation [on the website.](https://pyjun01.github.io/react-google-map-wrapper)
Check out the [Getting Started](https://pyjun01.github.io/react-google-map-wrapper/docs/introdution/) page for a quick overview.
### License
`react-google-map-wrapper` is [MIT licensed](https://github.com/pyjun01/react-google-map-wrapper/blob/main/LICENSE).