Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi:
I've created an app that shows a world map with the related data.
Is it possible to switch to national maps (by province) when selected over a country?
Thank you
Thanks Steve
I've showed the national map using this
= IF (GetSelectedCount(Country)=1, only(CountryMapFile), 'world.svg')
Hi Joaquin,
You can specify this kind of expression in the Load SVG path
=if(count(DISTINCT CountryCode)>1, 'World.svg', only(FileName))
with the FileNames referencing the necessary SVG file.
Thanks Steve
I've showed the national map using this
= IF (GetSelectedCount(Country)=1, only(CountryMapFile), 'world.svg')