Display Google Reviews of a Place on Google Maps on your website
project on npm: https://www.npmjs.com/package/google-maps-reviews
jQuery Version here: https://github.com/simonneutert/jquery-google-reviews
Credits
Inspired by Steven Monson's magnificent article here:
https://www.launch2success.com/guide/display-google-reviews-website-2017/ or check out Steven's github. Steven's code is based on peledies jquery plugin repo. So, I simply remixed their work into this repo. Thank you guys!
Dear beginners and copy-pasters
:octocat: For those of you, who are new in programming or can only copy-paste, please make sure, that the Google Maps API and the .js-file of this plugin are successfully loaded before you call this script in the body your html page.
under demo/index.html is a working demo, the comments will guide you :wink:
Prerequisites
either
- add the .js and .css of this repo to your project (see index.html for inspiration :wink:)
or
$ npm install -i google-maps-reviews
then
-
if you do not have a working Google Maps API key already: create a Google API Key: https://console.developers.google.com/apis/
-
add the following line with your Google Maps API key with the key param:
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&libraries=places&key=YourApiKeyHere"></script>
-
add an empty div element in your html's body with an unique ID, where the reviews should show up. In this case:
<div id="google-reviews"></div>
Call the Plugin
Grab your place's ID (https://developers.google.com/places/place-id) and call it as placeId parameter, when calling the plugin.
<script>
googlePlaces("google-reviews", {
placeId: 'ChIJZa6ezJa8j4AR1p1nTSaRtuQ',
header: "<h3>Google Reviews</h3>",
footer: '',
maxRows: 6,
minRating: 4,
months: ["Jan", "Feb", "Mär", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dez"],
textBreakLength: "90",
showDate: false,
shortenNames: true,
replaceAnonymous: false,
anonymousName: "A Google User",
anonymousNameReplacement: "User chose to remain anonymous",
});
});
</script>
Are Pull Requests welcome?
Yes, of course :octocat: