ThinkGeo.com    |     Documentation    |     Premium Support

Multiple Calls to GET markers_GeoResource.axd?overlayIds=

 Hey Everyone,


I've been away from ThinkGeo code for a bit stuck in a Xcode land, but I have returned and have a question.


 


I've been reviewing some code that was previously written:


 


Is there any faster way to do this?  As I scroll around the scrren now with some markers on the screen it does multiple calls to GET markers_GeoResource.axd.


 


Is there a way to avoid these post backs and continue to use clustering and hover over pop-ups from column information?


 


Thanks in advance,


Kevin 



 InMemoryMarkerOverlay markerOverlay = new InMemoryMarkerOverlay("MarkerOverlay");
            markerOverlay.FeatureSource.Open();
            markerOverlay.Columns.Add(new FeatureSourceColumn("YourOwnColumn"));
            markerOverlay.FeatureSource.Close();
            ClusterMarkerStyle currentCluster = new ClusterMarkerStyle(10, Map1.WidthInPixels, Map1.HeightInPixels);


Hi Kevin, 
  
 If you don’t have too many markers, you can try to use SimpleMarkerOverlay for that. 
  
 In SimpleMarkerOverlay we load all markers one time and won’t call multiple markers_GeoResource.axd. 
  
 Regards, 
  
 Don