How to tackle the identify of points at the same location. Say point A and B are at same location (x,y). I tried all GeometricRelationshipType to see it I can get the featurereader from a queryfilter using the map click geometry + searchenvelope
I am able to read only one feature.
[HTML] searchEnvelope = new Envelope(searchMapPoint.Coordinate, searchMapPoint.Coordinate); double mapTol = mapCntrl.ToMap(3); searchEnvelope.Resize(mapTol, mapTol); if (featureLayer.GeometryType == GeometryType.Point) queryFilter = new QueryFilter(searchEnvelope, GeometricRelationshipType.Any, "", true);
FeatureDataReader featureDatareader = featureLayer.GetDataReader(queryFilter);[/HTML]