Hello:
I am retrieving some attributes from Layers in an AGOL Map. They're in HTML format and look great when you do a Popup in AGOL. However, I'm trying to figure out how to render them nicely in a popup I've built using the ArcGIS Maps SDK .NETMAUI. The attributes will need to appear in both online and offline scenarios. I don't see anything in the API that can do this. Just looking for some ideas. Thanks.
Solved! Go to Solution.
You could also use MAUI's WebView class to render the HTML.
Hi,
You could investigate in using PopupViewer from Esri.ArcGISRuntime.Toolkit.Maui package. As written in documentation, it supports limited text display from HTML-based popups
PopupViewer sample is here.
You could also use MAUI's WebView class to render the HTML.
Yup. That's the option I started to pursue (pure .Net MAUI solution). Thanks..