Forum Discussion
一棵黄葛树
Helper II
1 year agoMap displays multiple KPIs
Hi, Assuming there are dealers and stores, how can they be displayed on the map visualization object with different icons at the same time?
- 1 year ago
Thank you for your attention. I completed it using a third-party visualization in the end.
kushanNa
Super User
1 year agoHi 一棵黄葛树
As far as I know, there's no built-in method in Power BI maps to add different icons. So your best option is to go with a custom visual, though there may be pricing or other limitations.
If you prefer to stick with Azure Maps, there is a workaround for this. However, the city name will still be visible alongside the icon.
Please follow the steps below:
create a new icon column
Icon =
SWITCH(
TRUE(),
'YourTable'[Type] = "Dealer", "🛠️",
'YourTable'[Type] = "Store", "🏬"
)
and join that icon column with the city
Join = YourTable[City] &" - "& YourTable[Icon]
and add that column into the map & mae category labels visible
please find the attached sample pbix file for your reference