Google information pin component is used to display more information on the press of a pin on screens with google maps.

This component is highly customizable using the props:
address - address displayed in the pin
imageUrl - image URL that should be displayed on the left side
rating - number of reviews the pinned place has received
ratingNum - number of stars the pinned place has
showRatingView - if set to true, ratings will show
title - pinned location's title
Example:
<GoogleInfoPin
imageUrl={item.profilePicturePath}
title={[item.name](<http://item.name/>)}
address={item.address}
showRatingView={item.showRatingView}
rating={item.rating}
ratingNum={item.ratingNum}
/>