In version 2.0 tooltips were a built in feature, in fact there was an ability to provide a custom tool tip control. I used that pretty heavily and users really like it. Now in the 3.0 version i see you have decided to remove that functionality. To emulate similar functionality i'm subscribing to the Map.MouseMove event getting the mouse coordinates and converting it into a PointShape using Extent Helper, then ultimately having to do a query like...
<Feature> features = fLayer.QueryTools.GetFeaturesContaining(new string[] {toolTipField } );
The problem i'm running into is this query in a larger layer file with say 50,000 polygons seems to be really slowing down the performance.
Can you recommend what the best way would be to now do a tooltip and to to get a field out of the shapefile to display for a tooltip. MouseMove fires *very* often and i think is dragging it down in performance
Thanks,
Chad
pointShape,
Collection