I am trying to add a route between locations using a Polyline, however, when I wrap the marker component and the Polyline component in a div, neither render on the map. However, when returning both in the same return, I am forced to wrap both in an enclosing tag
, otherwise an error will be thrown.
I am using google-maps-react
library and reactJS.
<Map item
className="map-container"
google={google}
zoom={4}
initialCenter={initialCenter}
fullscreenControl={false}
streetViewControl={false}
mapTypeControl={false}
>
{Object.values(groups).map((location, index) => {
const latestLocation = _.first(getSortedLocationsFromGroup(location))
const dashPins =
`${window.location.origin}/imgs/icon-pin-purple.png`
return (
<Marker
key={index}
icon={dashPins}
onClick={this.onMarkerClick}
position={{
lat: latestLocation.coords.latitude,
lng: latestLocation.coords.longitude
}}
/>
<Polyline
path={[ { lat: 39.072515, lng: -84.116524 }, { lat: coords.latitude, lng: coords.longitude }]}
options={{
strokeColor: dataColors.purple,
strokeOpacity: 1,
strokeWeight: 4,
offset: '0%',
icons: [
{
strokeWeight: 2,
icon: nodeOnLine,
offset: '0%',
repeat: '35px'
}
]
}}
/>
)
})}
</Map>
AFAIK you can return an array inside the map loop, but you must set unique keys to each element: