I am trying to optimize map rendering performance by splitting a shapefile with large complex polygons into a grid.
I am using your sample implementation that I found here: http://wiki.thinkgeo.com/wiki/map_suite_services_edition_spatial_functions_samples#split_polygon_based_on_grid
After running the polygon splitter, two new shapefiles are created: AreaSplit and LineSplit. When I load the AreaSplit shapefile into the map, it works great, except that I can see all the new lines where the polygons have been split.
I want to get rid of these lines, so that the shapefile appears to the user as if it has not been split into a grid.
I follow this video guide: http://download.thinkgeo.com/Videos/Wiki/IncreasingPolygonPerformance.wmv
where I learn I can set the Outline color of the AreaStyle to transparent, and the grid lines should become invisible (05:10 into the video).
Unfortunately, this leaves a thin gap between the polygons, through which the underlying layer is visible - in effect the grid lines are still visible. This does not happen in the video.
I have tried everything I can think of to get rid of this gap:
Setting OutlinePen to null,
Setting OutlinePen.Width to 0,
etc.
Nothing seems to help.
Can you point me in the right direction?