Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 8.0-M4
-
Fix Version/s: None
-
Component/s: main
-
Labels:None
Description
In find this in SLDTransformer at line 528
if(colorMap.getExtendedColors())
{ atts.addAttribute("", "extended", "extended", "", typeString); }That generate an invalid exended colorMap attribute returning a String instead of a boolean value.
<sld:ColorMap extended="ramp"> (this is an issue example)
the code fix:
boolean extended = colorMap.getExtendedColors();
if(extended)