Gathering detailed insights and metrics for simple-react-google-maps-extended
Gathering detailed insights and metrics for simple-react-google-maps-extended
Gathering detailed insights and metrics for simple-react-google-maps-extended
Gathering detailed insights and metrics for simple-react-google-maps-extended
npm install simple-react-google-maps-extended
Typescript
Module System
Node Version
NPM Version
JavaScript (88.24%)
HTML (8.89%)
CSS (2.87%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
7 Stars
15 Commits
5 Forks
1 Branches
2 Contributors
Updated on Mar 30, 2025
Latest Version
1.1.20
Package Id
simple-react-google-maps-extended@1.1.20
Unpacked Size
10.61 kB
Size
3.95 kB
File Count
4
NPM Version
8.15.0
Node Version
16.17.0
Published on
Jan 08, 2023
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
2
A simple Google Maps Component for react applications.
Google Maps Api Key Visit https://developers.google.com/maps/documentation/javascript/ Create a Google Developers account and enable Google Maps Platform to obtain an api key.
Install using the npm install command:
$ npm i --save simple-react-google-maps
In your React application, navigate to the component where you want Google Maps to be rendered.
import GoogleMaps from "simple-react-google-maps"
<GoogleMaps
apiKey={"Your Google Api Key"}
style={{height: "400px", width: "100%"}}
zoom={6}
center={{lat: 37.4224764, lng: -122.0842499}}
markers={{lat: 37.4224764, lng: -122.0842499}} //optional
/>
Multiple markers can also be rendered. Marker can also take in an array of geocodes.
markers={
[
{lat: 37.4224764, lng: -122.0842499},
{lat: 37.5224764, lng: -121.0842499},
{lat: 37.3224764, lng: -120.0842499}
]
}
Google also provides a Geocoding service. By sending a request to their api, any address can be geocoded. https://maps.googleapis.com/maps/api/geocode/json?address=${your address}&key={your api key}
For example: To get the The Metropolitan Museum of Art's geocode, send a fetch request to https://maps.googleapis.com/maps/api/geocode/json?address=$1000+5thAve+NewYork+10028&key={your api key} The response will contain the coordinates for the given address.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 0/15 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
108 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More