Select to view content in your preferred language

Symbolized Features - Select subset and only display those?

1681
1
Jump to solution
01-14-2013 06:03 AM
by Anonymous User
Not applicable
Original User: SStrand

I have a python script which modifies a template map to display features based on selected options. Currently I have it working where it will zoom to selected features and buffer them. The problem is that I need to have only the features within the buffer showing. The features are also symbolized. I am assuming that a simple "make feature layer" addition will not work, as the symbolization will be lost. Am I wrong in assuming this or is there a route to take to keep the symbolization?
0 Kudos
1 Solution

Accepted Solutions
CarlSunderman
Occasional Contributor
I would create a layer file to store your symbology then make a feature layer of your selected set

arcpy.ApplySymbologyFromLayer_management("selectedFeatures", "yourSymbology.lyr")

View solution in original post

0 Kudos
1 Reply
CarlSunderman
Occasional Contributor
I would create a layer file to store your symbology then make a feature layer of your selected set

arcpy.ApplySymbologyFromLayer_management("selectedFeatures", "yourSymbology.lyr")
0 Kudos