I have a solution for this error when using an overviewMap:
java.lang.NullPointerException: null
at org.mapfish.print.map.MapChunkDrawer.renderImpl(MapChunkDrawer.java:86
I seem not be able to push my commit to this repo, can you add me as contributor?
Or use this fix in the next release:
src\main\java\org\mapfish\print\map\MapChunkDrawer.java
mainTransformer = context.getLayout().getMainPage().getMap(name).createTransformer(context, params);
->
mainTransformer = context.getLayout().getMainPage().getMap(null).createTransformer(context, params);
I have a solution for this error when using an overviewMap:
java.lang.NullPointerException: null
at org.mapfish.print.map.MapChunkDrawer.renderImpl(MapChunkDrawer.java:86
I seem not be able to push my commit to this repo, can you add me as contributor?
Or use this fix in the next release:
src\main\java\org\mapfish\print\map\MapChunkDrawer.java
->