Does anyone have any sample code for using the identify task on more than one layerId? I have the code working with a single layerId (as with all the samples I can find).self.identifyParams.layerIds = [NSArray arrayWithObjects:[NSNumber numberWithInt:0], nil];
I want to identify on multiple layers. I've tried the following but it doesn't work. Any ideas?self.identifyParams.layerIds = [NSArray arrayWithObjects:[NSNumber numberWithInt:0], [NSNumber numberWithInt:1], [NSNumber numberWithInt:2], nil];
Thanks,Steve