I am using GeoTools 2.7.2 (JMapPane component ) to display a Map which has 9310 features (ploygons). Based on some computation, I am applying different color sets to the polygons. However, since it is a relatively long process, the map takes 3-4 minutes to render. My questions are: 1. How do I speed up the rendering process? Currently, it renders all polygons and then displays the map.
2. How can I display a spinner or an in progress bar that give the user an idea of the time remaining for the map to completely render?

Any ideas would be much appreciated. Kind regard, John

link|improve this question
you need to add some more information before we can really help. Which datastore are you using? How are you applying the colours? Do you just need a map or do you plan on doing more analysis after you've drawn them? – iant Nov 22 '11 at 16:42
@iant I am using a FileDataStore which is reading data from a shapeFile store = FileDataStoreFinder.getDataStore(shapeFileLocation); featureSource = store.getFeatureSource(); Data which determines the coloring of the polygons comes from a csv file which I need to read based on the user input from the UI. I load the shapefile, read the file in, perform some computation and then redraw the map by creating a new style and applying it to the map (via the layer). – John Nov 23 '11 at 3:59
could you use an SLD file to store the styling? It sounds as if the problem is within your colouring code as I've displayed ~9K polygons from a shapefile with not too much delay. Of course this also depends on the size and complexity of your shapes. – iant Nov 23 '11 at 8:49
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.