Skip to content

Commit

Permalink
MapFileWriterFactory: correct label-position default value, fixes map…
Browse files Browse the repository at this point in the history
  • Loading branch information
devemux86 committed Jul 19, 2016
1 parent 8615aee commit f02aa93
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Copyright 2010, 2011, 2012, 2013 mapsforge.org
* Copyright 2015 devemux86
* Copyright 2015-2016 devemux86
*
* This program is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software
Expand Down Expand Up @@ -60,7 +60,7 @@ protected TaskManager createTaskManagerImpl(TaskConfiguration taskConfig) {
configuration.setDebugStrings(getBooleanArgument(taskConfig, PARAM_DEBUG_INFO, false));
configuration.setPolygonClipping(getBooleanArgument(taskConfig, PARAM_POLYGON_CLIPPING, true));
configuration.setWayClipping(getBooleanArgument(taskConfig, PARAM_WAY_CLIPPING, true));
configuration.setLabelPosition(getBooleanArgument(taskConfig, PARAM_LABEL_POSITION, false));
configuration.setLabelPosition(getBooleanArgument(taskConfig, PARAM_LABEL_POSITION, true));
// boolean waynodeCompression = getBooleanArgument(taskConfig, PARAM_WAYNODE_COMPRESSION,
// true);
configuration.setSimplification(getDoubleArgument(taskConfig, PARAM_SIMPLIFICATION_FACTOR,
Expand Down

0 comments on commit f02aa93

Please sign in to comment.