For work I created an Annotation Layer with groups such as:
Now different departments are looking to change some of the annotations to suit their own purpose. The issue is that the new annotation is on the same location as the old one. For example my buildings group has 50 building names associated with it. The new department wants to add an annotation that spatially cover the annotation from one of the 50 buildings already labeled. If I turn off the building group to expose the new annotation group all the buildings are unlabeled, but if their on you can read it.
The solution that I have found so far is to create a new layer and delete the information out that I don't need. This mean though I have to manage two layers which can get tricky if more and more departments request additions to the layers.
Has anyone ran into this issue? Or have an elegant solution on how to solve this annotation management issue?
Solved! Go to Solution.
One easy solution might be add a new field lets say call it "OnOff" and then populate the table records accordingly with "Y" or "N". Now that each record has a Y or N you can in the Definition Query Tab query IN our OUT the Y or N attributes:
OnOff IN ('Y') or if you prefer to turn them off use NOT OnOff IN ('Y')
Some questions to clarify your process and question:
Chris Donohue, GISP
To answer your questions
Thank you for your assistance
One easy solution might be add a new field lets say call it "OnOff" and then populate the table records accordingly with "Y" or "N". Now that each record has a Y or N you can in the Definition Query Tab query IN our OUT the Y or N attributes:
OnOff IN ('Y') or if you prefer to turn them off use NOT OnOff IN ('Y')
I'd go with the concept proposed by m. neer . This way the data will continue to exist for those situations where you need it, so you won't need to maintain two layers. Plus if other departments want to also have a hand in annotation, you can make a field for each of them with the same Definition Query process in mind.
Note that this process will required educating the other departments on how the Definition Query works if they are planning to pull in the data themselves.
Chris Donohue, GISP
The solution is perfect. Thank you for your assistance