I have map points for schools in a district. I want to label the map ID and the name of the school on the map. I have the map ID labeled within the point symbol but I want the school name outside of that. Is this possible without manually putting in a text box for the school name? Using ArcMap 10
Tell me more
×
Geographic Information Systems Stack Exchange is a question and answer site for
cartographers, geographers and GIS professionals. It's 100% free, no registration required.
|
|
You could use an Expression for the label and insert new line characters to create a stacked label. "Map Id: " & [MapID] & vbCrLf & "Name: " & [SchoolName] See http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//00s800000027000000.htm |
|||
|
|
|
I've done similar by having multiple instances of the layer. Add the point layer twice, and have one instance with the mapID label, the other with the school name label. |
|||||||||
|
|
another method (without having 2 layers) is to "define classes of features and label each class differently" |
|||||||||
|
