Hi guys, I found that spatial query can only return up to 1000 results. I am not 100% sure on this....Does someone have a answer for this? So my codes can only make 1000 results display on the graphicslayer...
MessageBox.Show(args.FeatureSet.Features.Count().ToString());
foreach (Graphic selectedGraphic in args.FeatureSet.Features)
{
selectedGraphic.Symbol = LayoutRoot.Resources["DefaultLineSymbol"] as ESRI.ArcGIS.Client.Symbols.Symbol;
graphicsLayer.Graphics.Add(selectedGraphic);
}
Appreciate that there maybe some ideas or thoughts on how to solve this 🙂