Hi.
I have a feature class with several areas some are overlapping each other. But there is a field named cities, that names each overlap with the name of the city. something like this:
| Cities |
| Paris |
| London |
| Berlin |
| Paris |
| Paris |
| Rome |
| Berlin |
I want to appear a polygon per city based on the their name. But on the viewer I don't even know where should I do it. I tried in the map viewer to use on the right: Styles/"My_layer"/+Expression
I tried something like this:
var AOI_name = $feature
var arr = []
for(var naming in AOI_name) {
if(naming.name != null) {
Push(arr, naming)
}
}
any help will be fantastic.
cheers
PS