cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
sajarac
Kudo Kingpin
Kudo Kingpin

Color code a map

Hi there,

Question here?

I would like to add a map in my powerapp, somebody could say just insert a PowerBI title and done. but I can't have the other users with a premium account to see PowerBI titles. So that is why I have decided to create my own map. 

Here is my idea:

I want to insert a base map, then make each state their own shape and put on top of the base map. Now apply the onselect property to each shape and get the filters etc.

 

My question is? How can I have each shape to have an specific color? I mean when you insert an icon you can easy change the icon color , but If I do the same with my png file the entire image gets the color.

 

thanks in advance for any response,

 

Regards,

 

download2.pngSK.png

11 REPLIES 11
mdevaney
Super User
Super User

@sajarac 

The map would need to be an SVG with individual 'state/provinces'.  Then you could specify the fill property of the item by putting the SVG code in an HTML Text control and changing the fill color of each shape.

---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."

Thank you very much for your prompt response, just please correct me if I am wrong.

so this mean that I only need to create a single map SVG file with the states provinces delimited? So I don't need to create a small shapes of each state/province separated?

 

And also could you please send me a sample of the HTML code?

 

Sorry to bother you, and thanks in advance

poweractivate
Most Valuable Professional
Most Valuable Professional

@sajarac 

 

@sajarac  wrote:

Now apply the onselect property to each shape and get the filters etc.


 

If you use @mdevaney  approach it is a bit more advanced. You will not get tiny shapes with an OnSelect property to use.

 

Instead you have to do something like this in the HTML Text control as an example:

 

"data:image/svg+xml," & EncodeUrl(
    "<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'>
       <circle cx='100' cy='100' r='80' fill='" & _SomeSelectedValueFromSomeWhereElse & "' />
    </svg>"
)

However, now that you mention it @sajarac  if you were to go with this approach from @mdevaney , we are unsure how you would get functionality on the SVG element clicks on the shapes (states). While something like the above would allow you to do something like click some other thing like a dropdown somewhere else and then set a color selected on one of the shapes based on that, etc. with some specific coding of the dropdown and the SVG code, so you could do things like that.

 

However, we are not sure if clicks from the SVG elements themselves can cause "actions" in Power Apps with out of the box behavior. 

 

We are unsure how this would be possible, without the Power Apps Component Framework (which is much more advanced and considerable work compared to using a relatively much easier suggestion like @mdevaney's).

 

We also would be interested how a scenario like @sajarac's could be accomplished only using the SVG code placed  in HTML Text control Power Apps.

 

@sajarac if all you need to do is set the color and do nothing else, the suggestion from @mdevaney should work perfectly. If you also need to set color, but not by clicking the states, but rather clicking Power Apps elements to change the color of the SVG shapes, even that should be possible with the suggestion from @mdevaney  (with a bit more work).

 

However, @sajarac if your scenario involves actually clicking on the states themselves, we're not sure the clicking on the states would be covered under the suggestion from @mdevaney - if it still is possible even then we'd be curious how, maybe if @mdevaney does have a way in mind and wants to share it, we would also be interested in such a way .

 

The only thing we can think of and still avoid PowerApps Component Framework (but may not be perfect) is:

 

you could instead assemble a series of SVG images instead of just one SVG image - with each SVG image being each individual state - and have them as separate Image controls - with the Image property of each Image Control being defined using the similar kind of svg code as the above but just for each individual state image instead of the whole map. In this way they can each individually have the OnSelect property you want on the image, and the SVG code would be used to render the image of the state / province for the Image property. 

 

However there are some downsides to this:

 

1) The hovering and unhovering color change is probably not possible at all when doing it this way, even if you have separate Image if you use SVG, this might only be possible when making the custom code component instead.
Ref: 
SVG hover in PowerApps (powerusers.microsoft.com)

as you can see @RandyHayes tested pretty recently as of this writing and it is not possible to use hover in SVG out of the box. We also could not find out any way either when testing it ourselves just prior to this writing, (at least, when we were testing only simpler ways that do not require the Power Apps Code Component framework).

 

2) The click or select will trigger on the whole rectangle not on just, say, the parts where the path is defined. We are not sure if there might be a way to format the SVG where this does not happen - if there is, we are unsure what that may be right now.

 

3) In general those SVG Images done this way won't feel like the Power Apps Icons that come out of the box in terms of hovering, selecting, etc. It is possible that playing with the SVG code could make it closer to behaving as such, but we are not sure in exactly what was it has to be played with to accomplishing this, or if it is even possible to play with the SVG any further to achieve that and maybe only can be done with Power Apps Component Framework at that point. 

 

 

So @sajarac it would depend what your scenario is exactly - are you envisioning needing to click on the map tiles just like you can in Power BI? We did note that you specifically want to use Power Apps Canvas App only for this one, and not Power BI - this question is intended to mean as follows: do you want the similar effect and functionality where you can click on the individual state in Power BI, but in the Canvas App?

 

@sajarac 

To clarify, what I’m saying is you would either need and SVG version of the map of North America or all of the individual states/provinces. Then you could change the states/provinces colors by manipulating the SVG code.

 

I don’t have any sample code to share.  You will have to find or create these SVG files yourself.  Putting together this project would likely take a few days.

 

---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."

 

 

Thank you very much both @poweractivate , @mdevaney  for your valuable help.

 

And a big thank you to you @poweractivate for tis huge explanation. It seems like a thesis for me.

 

I have enclosed both maps the USCAN.svg properly mapped and also a test state/province, in this case I have choosed "SK" in Canada.

 

I tried to add both maps to my app so the big map and the "SK" on top of that. But still not clear to me how to play whit this.

 

I think that when the user click in a specific state/province. that province could change the fill color and then set a parameter value, that parameter could trigger a table/gallery/dropdown to filter the data based on that state/province selected?

 

Make sense guys?

 

 P/S I will send you the SVG files in a PM, because I can't upload svg files.

mdevaney
Super User
Super User

@sajarac 

Unfortunately, those SVG files can't be edited in Notepad.  They are encoded in such a way that makes the text show as gibberish.  You'll need to find some different files.


True, but I use this site to properly map each of the states/regions. So each one has their own label/tag

 

https://synoptic.design/

 

If you upload the map that I sent you you will see.

mdevaney
Super User
Super User

@sajarac 

Sorry, but I do not want to upload the map to the website.  The synoptic design website is outside of my area of expertise.

If there is an SVG which has editable colors I am willing to help here because I know how to do it.  This could turn out to be a fairly large project and I don't want to start doing something that will be a huge time investment.  Hopefully you understand my reasons.

I totally understand, and again thanks for your help. The map is already mapped and each state/province has a tag/label according to their name i.e TX=TX

Thanks again

Helpful resources

Announcements

Take a short Community User Survey | Help us make your experience better!

To ensure that we are providing the best possible experience for Community members, we want to hear from you!    We value your feedback! As part of our commitment to enhancing your experience, we invite you to participate in a brief 15-question survey. Your insights will help us improve our services and better serve the community.   👉 Community User Survey    Thank you for being an essential part of our community!    Power Platform Engagement Team  

Tuesday Tip | How to Get Community Support

It's time for another Tuesday Tip, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.       This Week: All About Community Support Whether you're a seasoned community veteran or just getting started, you may need a bit of help from time to time! If you need to share feedback with the Community Engagement team about the community or are looking for ways we can assist you with user groups, events, or something else, Community Support is the place to start.   Community Support is part of every one of our communities, accessible to all our community members.   Within each community's Community Support page, you'll find three distinct areas, each with a different focus to help you when you need support from us most. Power Apps: https://powerusers.microsoft.com/t5/Community-Support/ct-p/pa_community_support Power Automate: https://powerusers.microsoft.com/t5/Community-Support/ct-p/mpa_community_support Power Pages: https://powerusers.microsoft.com/t5/Community-Support/ct-p/mpp_community_support Copilot Studio: https://powerusers.microsoft.com/t5/Community-Support/ct-p/pva_community-support   Community Support Form If you need more assistance, you can reach out to the Community Team via the Community support form. Choose the type of support you require and fill in the form accordingly. We will respond to you promptly.    Thank you for being an active part of our community. Your contributions make a difference!   Best Regards, The Community Management Team

Community Roundup: A Look Back at Our Last 10 Tuesday Tips

As we continue to grow and learn together, it's important to reflect on the valuable insights we've shared. For today's #TuesdayTip, we're excited to take a moment to look back at the last 10 tips we've shared in case you missed any or want to revisit them. Thanks for your incredible support for this series--we're so glad it was able to help so many of you navigate your community experience!   Getting Started in the Community An overview of everything you need to know about navigating the community on one page!  Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Community Ranks and YOU Have you ever wondered how your fellow community members ascend the ranks within our community? We explain everything about ranks and how to achieve points so you can climb up in the rankings! Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Powering Up Your Community Profile Your Community User Profile is how the Community knows you--so it's essential that it works the way you need it to! From changing your username to updating contact information, this Knowledge Base Article is your best resource for powering up your profile. Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Community Blogs--A Great Place to Start There's so much you'll discover in the Community Blogs, and we hope you'll check them out today!  Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Unlocking Community Achievements and Earning Badges Across the Communities, you'll see badges on users profile that recognize and reward their engagement and contributions. Check out some details on Community badges--and find out more in the detailed link at the end of the article! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Blogging in the Community Interested in blogging? Everything you need to know on writing blogs in our four communities! Get started blogging across the Power Platform communities today! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Subscriptions & Notifications We don't want you to miss a thing in the community! Read all about how to subscribe to sections of our forums and how to setup your notifications! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Getting Started with Private Messages & Macros Do you want to enhance your communication in the Community and streamline your interactions? One of the best ways to do this is to ensure you are using Private Messaging--and the ever-handy macros that are available to you as a Community member! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Community User Groups Learn everything about being part of, starting, or leading a User Group in the Power Platform Community. Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Update Your Community Profile Today! Keep your community profile up to date which is essential for staying connected and engaged with the community. Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Thank you for being an integral part of our journey.   Here's to many more Tuesday Tips as we pave the way for a brighter, more connected future! As always, watch the News & Announcements for the next set of tips, coming soon!

Calling all User Group Leaders and Super Users! Mark Your Calendars for the next Community Ambassador Call on May 9th!

This month's Community Ambassador call is on May 9th at 9a & 3p PDT. Please keep an eye out in your private messages and Teams channels for your invitation. There are lots of exciting updates coming to the Community, and we have some exclusive opportunities to share with you! As always, we'll also review regular updates for User Groups, Super Users, and share general information about what's going on in the Community.     Be sure to register & we hope to see all of you there!

April 2024 Community Newsletter

We're pleased to share the April Community Newsletter, where we highlight the latest news, product releases, upcoming events, and the amazing work of our outstanding Community members.   If you're new to the Community, please make sure to follow the latest News & Announcements and check out the Community on LinkedIn as well! It's the best way to stay up-to-date with all the news from across Microsoft Power Platform and beyond.    COMMUNITY HIGHLIGHTS   Check out the most active community members of the last month! These hardworking members are posting regularly, answering questions, kudos, and providing top solutions in their communities. We are so thankful for each of you--keep up the great work! If you hope to see your name here next month, follow these awesome community members to see what they do!   Power AppsPower AutomateCopilot StudioPower PagesWarrenBelzDeenujialexander2523ragavanrajanLaurensMManishSolankiMattJimisonLucas001AmikcapuanodanilostephenrobertOliverRodriguestimlAndrewJManikandanSFubarmmbr1606VishnuReddy1997theMacResolutionsVishalJhaveriVictorIvanidzejsrandhawahagrua33ikExpiscornovusFGuerrero1PowerAddictgulshankhuranaANBExpiscornovusprathyooSpongYeNived_Nambiardeeksha15795apangelesGochixgrantjenkinsvasu24Mfon   LATEST NEWS Business Applications Launch Event - On Demand In case you missed the Business Applications Launch Event, you can now catch up on all the announcements and watch the entire event on-demand inside Charles Lamanna's latest cloud blog.   This is your one stop shop for all the latest Copilot features across Power Platform and #Dynamics365, including first-hand looks at how companies such as Lenovo, Sonepar, Ford Motor Company, Omnicom and more are using these new capabilities in transformative ways. Click the image below to watch today!     Power Platform Community Conference 2024 is here! It's time to look forward to the next installment of the Power Platform Community Conference, which takes place this year on 18-20th September 2024 at the MGM Grand in Las Vegas!   Come and be inspired by Microsoft senior thought leaders and the engineers behind the #PowerPlatform, with Charles Lamanna, Sangya Singh, Ryan Cunningham, Kim Manis, Nirav Shah, Omar Aftab and Leon Welicki already confirmed to speak. You'll also be able to learn from industry experts and Microsoft MVPs who are dedicated to bridging the gap between humanity and technology. These include the likes of Lisa Crosbie, Victor Dantas, Kristine Kolodziejski, David Yack, Daniel Christian, Miguel Félix, and Mats Necker, with many more to be announced over the coming weeks.   Click here to watch our brand-new sizzle reel for #PPCC24 or click the image below to find out more about registration. See you in Vegas!     Power Up Program Announces New Video-Based Learning Hear from Principal Program Manager, Dimpi Gandhi, to discover the latest enhancements to the Microsoft #PowerUpProgram. These include a new accelerated video-based curriculum crafted with the expertise of Microsoft MVPs, Rory Neary and Charlie Phipps-Bennett. If you’d like to hear what’s coming next, click the image below to find out more!     UPCOMING EVENTS Microsoft Build - Seattle and Online - 21-23rd May 2024 Taking place on 21-23rd May 2024 both online and in Seattle, this is the perfect event to learn more about low code development, creating copilots, cloud platforms, and so much more to help you unleash the power of AI.   There's a serious wealth of talent speaking across the three days, including the likes of Satya Nadella, Amanda K. Silver, Scott Guthrie, Sarah Bird, Charles Lamanna, Miti J., Kevin Scott, Asha Sharma, Rajesh Jha, Arun Ulag, Clay Wesener, and many more.   And don't worry if you can't make it to Seattle, the event will be online and totally free to join. Click the image below to register for #MSBuild today!     European Collab Summit - Germany - 14-16th May 2024 The clock is counting down to the amazing European Collaboration Summit, which takes place in Germany May 14-16, 2024. #CollabSummit2024 is designed to provide cutting-edge insights and best practices into Power Platform, Microsoft 365, Teams, Viva, and so much more. There's a whole host of experts speakers across the three-day event, including the likes of Vesa Juvonen, Laurie Pottmeyer, Dan Holme, Mark Kashman, Dona Sarkar, Gavin Barron, Emily Mancini, Martina Grom, Ahmad Najjar, Liz Sundet, Nikki Chapple, Sara Fennah, Seb Matthews, Tobias Martin, Zoe Wilson, Fabian Williams, and many more.   Click the image below to find out more about #ECS2024 and register today!   Microsoft 365 & Power Platform Conference - Seattle - 3-7th June If you're looking to turbo boost your Power Platform skills this year, why not take a look at everything TechCon365 has to offer at the Seattle Convention Center on June 3-7, 2024.   This amazing 3-day conference (with 2 optional days of workshops) offers over 130 sessions across multiple tracks, alongside 25 workshops presented by Power Platform, Microsoft 365, Microsoft Teams, Viva, Azure, Copilot and AI experts. There's a great array of speakers, including the likes of Nirav Shah, Naomi Moneypenny, Jason Himmelstein, Heather Cook, Karuana Gatimu, Mark Kashman, Michelle Gilbert, Taiki Y., Kristi K., Nate Chamberlain, Julie Koesmarno, Daniel Glenn, Sarah Haase, Marc Windle, Amit Vasu, Joanne C Klein, Agnes Molnar, and many more.   Click the image below for more #Techcon365 intel and register today!   For more events, click the image below to visit the Microsoft Community Days website.    

Tuesday Tip | Update Your Community Profile Today!

It's time for another TUESDAY TIPS, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.   We're excited to announce that updating your community profile has never been easier! Keeping your profile up to date is essential for staying connected and engaged with the community.   Check out the following Support Articles with these topics: Accessing Your Community ProfileRetrieving Your Profile URLUpdating Your Community Profile Time ZoneChanging Your Community Profile Picture (Avatar)Setting Your Date Display Preferences Click on your community link for more information: Power Apps, Power Automate, Power Pages, Copilot Studio   Thank you for being an active part of our community. Your contributions make a difference! Best Regards, The Community Management Team

Top Solution Authors
Top Kudoed Authors
Users online (6,310)