Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 2.6.5, 2.7-M3
-
Fix Version/s: None
-
Component/s: render
-
Labels:None
Description
The WrappingProjectionHandler postProcess method, checks if the viewing area might contain the geometry multiple times.
Actually I have a use case with an Oracle layer where this check fails
min < renderingEnvelope.getMaxX()
i.e. the west-most location inside the current rendering envelope is always greater thant the renderingEnvelope max-X thus causing the while cycle below
while (min < renderingEnvelope.getMaxX())
{ ... }passing over leaving the geomType null and causing an NPE when checking for geomType binding type.