How to change marker label color of react-google-maps

3k Views Asked by At

I am using @react-google-maps/api library. I've integrated google map but I am facing marker label color, I tried very hard but didn't find any solution. Could someone please help me with how to resolve this issue.

import {
  Marker,
} from "@react-google-maps/api";

{markers.map(({ id, name, position }) => (
        <Marker
          key={id}
          position={position}
          onClick={() => handleActiveMarker(id)}
          label={`${id}`}
        >
          {activeMarker === id ? (
            <InfoWindow onCloseClick={() => setActiveMarker(null)}>
              <div>{name}</div>
            </InfoWindow>
          ) : null}
        </Marker>
      ))}
3

There are 3 best solutions below

0
On BEST ANSWER

Try this: label: {text: `${id}`, color: "blue"}

0
On

We can add to the MarkerLabel object key & value className

label={{text:`${id}`, className:'marker-label'}}

And then add all the necessary styles for this class

0
On

Try this piece of code :

label={{text:`${id}`,color:'#fff'}}

Add this label attribute in Marker tag