{"id":44935132,"url":"https://github.com/pyjun01/react-google-map-wrapper","last_synced_at":"2026-02-18T07:08:49.002Z","repository":{"id":206660838,"uuid":"717404320","full_name":"pyjun01/react-google-map-wrapper","owner":"pyjun01","description":"React component library for rendering Google Maps","archived":false,"fork":false,"pushed_at":"2025-05-02T15:00:06.000Z","size":602,"stargazers_count":16,"open_issues_count":0,"forks_count":5,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-09-18T02:23:58.566Z","etag":null,"topics":["google-map","google-map-react","google-maps","google-maps-api","google-maps-javascript","react","react-google-map","react-google-maps"],"latest_commit_sha":null,"homepage":"https://pyjun01.github.io/react-google-map-wrapper/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pyjun01.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-11-11T11:48:58.000Z","updated_at":"2025-05-02T15:00:10.000Z","dependencies_parsed_at":"2023-12-12T16:27:59.157Z","dependency_job_id":"7a9254e2-0737-40d2-9513-34574fdacdc3","html_url":"https://github.com/pyjun01/react-google-map-wrapper","commit_stats":{"total_commits":102,"total_committers":1,"mean_commits":102.0,"dds":0.0,"last_synced_commit":"4414ad5d0c3964c577bfeac46f8bb455ff2b4ac9"},"previous_names":["pyjun01/react-google-map","pyjun01/react-google-map-wrapper"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/pyjun01/react-google-map-wrapper","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyjun01%2Freact-google-map-wrapper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyjun01%2Freact-google-map-wrapper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyjun01%2Freact-google-map-wrapper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyjun01%2Freact-google-map-wrapper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pyjun01","download_url":"https://codeload.github.com/pyjun01/react-google-map-wrapper/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyjun01%2Freact-google-map-wrapper/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29571905,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T06:19:27.422Z","status":"ssl_error","status_checked_at":"2026-02-18T06:18:44.348Z","response_time":162,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["google-map","google-map-react","google-maps","google-maps-api","google-maps-javascript","react","react-google-map","react-google-maps"],"created_at":"2026-02-18T07:08:48.378Z","updated_at":"2026-02-18T07:08:48.998Z","avatar_url":"https://github.com/pyjun01.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# [React Google Map Wrapper](https://pyjun01.github.io/react-google-map-wrapper/) \u0026middot; [![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/pyjun01/react-google-map-wrapper/blob/main/LICENSE) [![npm version](https://img.shields.io/npm/v/react-google-map-wrapper.svg?style=flat)](https://www.npmjs.com/package/react-google-map-wrapper)\n\n`react-google-map-wrapper` is a React component library for rendering Google Maps.\n\nYou can see an example [here](https://pyjun01.github.io/react-google-map-wrapper/docs/examples/basic/).\n\n```tsx\nimport { Suspense } from 'react';\nimport { GoogleMap, GoogleMapApiLoader, Marker } from 'react-google-map-wrapper';\n\nfunction Map() {\n  return (\n    \u003cGoogleMap className='h-[400px]' zoom={17} center={{ lat: 37.5709413, lng: 126.977787 }}\u003e\n      \u003cMarker lat={37.5709413} lng={126.977787} /\u003e\n    \u003c/GoogleMap\u003e\n  );\n}\n\nfunction App() {\n  return (\n    \u003cSuspense fallback={\u003cFallback /\u003e}\u003e\n      {/* Load the google map api */}\n      \u003cGoogleMapApiLoader apiKey='YOUR_API_KEY' suspense\u003e\n        \u003cMap /\u003e\n      \u003c/GoogleMapApiLoader\u003e\n    \u003c/Suspense\u003e\n  );\n}\n```\n\n## Installation\n\n```bash\nnpm install react-google-map-wrapper # or yarn add react-google-map-wrapper or pnpm add react-google-map-wrapper\n```\n\n\u003e **If you're using React v18, please install version `1.0.7`.**\n\n## Documentation\n\nYou can find the documentation [on the website.](https://pyjun01.github.io/react-google-map-wrapper)\n\nCheck out the [Getting Started](https://pyjun01.github.io/react-google-map-wrapper/docs/introdution/) page for a quick overview.\n\n### License\n\n`react-google-map-wrapper` is [MIT licensed](https://github.com/pyjun01/react-google-map-wrapper/blob/main/LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpyjun01%2Freact-google-map-wrapper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpyjun01%2Freact-google-map-wrapper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpyjun01%2Freact-google-map-wrapper/lists"}