Does anyone know how can I call a css class for my icon ? There is my code :
{
Teams.incident.map((item, i) => (
<Marker
key={i}
position={{ lat: item.lat, lng: item.lng }}
icon={{
url: "/static/images/map/incident.png",
scaledSize: new window.google.maps.Size(30, 30)
}}
onClick={() => handleClickPinOpen(item, "incident")}
></Marker>
));
}
Thanks a lot for your future help