I am looping through the results of an Identify Operation and would like to compare the URL (of the containing feature layer) of the IdentifyResult feature; how can I access it?
This does not work:
...
var fl:FeatureLayer;
for each (var identifyResult:IdentifyResult in identifyResults)
{
fl.graphicProvider = identifyResult.feature.graphics;
Alert.show(FL.url);
}
...
I would assume something similar...