Hi all,
I'm using the Bing Maps connector to show 5 pins for the possible departure locations and one for the destination.
I'd like to selected departure location and the destination to have an alternate color to the rest of the pins.
Does anyone know if this is possible (yet)?
I tried stuff like (this is an example though, I've tried alot of different things):
If(ThisItem.City = galLocations.Selected.City, Green, Red)
If(Self.Selected = galLocations.Selected.City, Green, Red)
If(ThisRecord.City = galLocations.Selected.City, Green, Red)
But all without success. It seems that I can only update the color of ALL pins and not seperate pins like you'd do inside a gallery to show which record is selected;
If(ThisItem.IsSelected, Green, Red) //Just an example, colors would be awfull for UX..
Could try to use a static map so I can use custom pin images aswell, but an interactive one is prefered.
Any ideas are appreciated!