Hello all!
Trying to use the HTML Source window within the Text popup to add a bunch of "href" URLs.
not exactly sure where to add my Arcade 'expression' within the HTML? the URLs are NOT within the attribute table, but I can query out which Features can be given those URLs(hardcoded).
Im just hoping to get a list of Text in the popup that individually have an href URL associated to them.
I have something as simple as this to subset the selected Features-
if($feature.STATE == "Alabama") {
return something something
and a hardcoded HTML test like this, that works-
<p>
<strong>Geoheritage Examples: </strong>
<br>
<a target="_blank" rel="noopener noreferrer" href="https://www.gsa.state.al.us/gsa/geologic/opportunities/">Educational information</a>
</p>
..but I need to use an expression statement somewhere in that HTML for the popup to work correctly and popup the correct URLs.. yes?
thanks!