Hello, Im a founder building my MVP here, (no coding background). Does anyone have success recently changing Map pin colors? I took the advice from this chat, (Map pin color )
but I couldn’t get it too function. Thanks!
Hello, Im a founder building my MVP here, (no coding background). Does anyone have success recently changing Map pin colors? I took the advice from this chat, (Map pin color )
but I couldn’t get it too function. Thanks!
Can you show me what you have configured so far in your app?
Here’s a newer version to do it in the “new” Glide.
Thanks for the quick response, not sure what helps so here is a quick overview of how it set up.
I want to dynamically change the color of map pins based on how urgent the job is. Specifically:
Red: If the job starts in 1 day or less (marked as “URGENCY”)
Orange: If it starts in 2 days or less (marked as “SOON”)
Default (Blue): If it’s 3+ days away (no urgency)
The pin’s title is coming from a template column — it combines urgency and job name, like “URGENCY Laborer” or “SOON Electrician.” Some just say the job name if there’s no urgency.
You can try playing around with this:
[title*="URGENCY"] > svg > path {
fill: red;
}
[title*="SOON"] > svg > path {
fill: orange;
}