2006-10-03 10:39:43 +02:00
|
|
|
/*****************************************************************************
|
Patch from David Eastcott :
1. Modified Text Symbolizer
a) corrected line fragment centering (for 2nd and subsequent lines, when line breaks occur).
b) adjusted vertical alignment calculation so that:
i) middle -> has the center of the text line(s) at the point origin
ii) bottom -> has the text line(s) below the point origin
iii) top -> has the text line(s) above the point origin
c) added new text_symbolizer attribute: 'wrap_before', value range: true/false, default == false
allows line breaks at first wrap_char before wrap_width as an alternative to the original
which was to create the line break at the first wrap_char after wrap_width
d) added new text_symbolizer attribute: 'horizontal_alignment', value range: left/middle/right, default == middle
i) left -> has all text line(s) to left of the point origin
ii) middle -> has all text line(s) centered on the the point origin
iii) right -> has all text line(s) to the right of the point origin
NOTE: dx, dy position adjustments are applied after alignments and before Justify.
e) added new text_symbolizer attribute: 'justify_alignment', value range: left/middle/right, default == middle
i) left -> after alignments, has all text line(s) are left justified (left to right reading)
ii) middle -> after alignments, has all text line(s) center justified
iii) right -> after alignments, has all text line(s) right justified (right to left reading)
f) added new text_symbolizer attribute: 'opacity', value range: 0.0 thru 1.0; 1.0 == fully opaque
g) modified positioning to compensate for both line_spacing and character_spacing, to ensure proper
centering of the text envelope. Also ensure that centering occurs correctly even if no wrapping
occurs. Line spacing is uniform and consistent and compensates for errors between text_size and
the actual size (ci.height is inconsistent, depending on case and character); fixes issue with
multi-line text where some lines have a slight gap and others are compressed together.
2. Modified shield_symbolizer
a) added the attributes:
i) allow_overlap
ii) vertical_alignment
iii) horizontal_alignment
iv) justify_alignment
v) wrap_width
vi) wrap_character
vii) wrap_before
viii) text_convert
ix) line_spacing
x) character_spacing
xi) opacity
b) added new shield_symbolizer attribute: 'unlock_image', value range: true/false, default == false
i) false == image and text placement behaviour same as before
ii) true == image placement independant of text, image is always centered at geometry point, text placed per attributes,
dx/dy only affect text.
Allows user to create point markers with text, but both the text and image rendering collision detection are done
as a pair (they come and go together - solves problem if using point_symbolizer and text_symbolizers where one or the
other are omitted due to overlaps, but not both)
c) extended choices for the attribute 'placement' to include vertex; effect is limited to the shield_symbolizer
Allows an attempted placement at every vertex available, gives additional shield placement volume when using line geometry
d) ensured that the text placement was not updating the detector unless a shield image was actually placed.
e) added new shield_symbolizer attribute: 'no_text', value range: true/false, default = false
When set true, the text for the feature is ignored ('space' subsituted) so that pure graphic symbols can be used
and no text is rendered over top of them.
2009-10-19 15:52:53 +02:00
|
|
|
*
|
2006-10-03 10:39:43 +02:00
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
*
|
2011-10-23 15:04:25 +02:00
|
|
|
* Copyright (C) 2011 Artem Pavlenko
|
2006-10-03 10:39:43 +02:00
|
|
|
*
|
|
|
|
* This library 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 Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
2009-12-16 21:02:06 +01:00
|
|
|
|
2007-10-08 19:42:41 +02:00
|
|
|
// mapnik
|
|
|
|
#include <mapnik/save_map.hpp>
|
2010-07-19 02:21:53 +02:00
|
|
|
#include <mapnik/map.hpp>
|
2007-10-08 19:42:41 +02:00
|
|
|
#include <mapnik/ptree_helpers.hpp>
|
2009-12-16 21:02:06 +01:00
|
|
|
#include <mapnik/expression_string.hpp>
|
2010-03-12 15:49:50 +01:00
|
|
|
#include <mapnik/raster_colorizer.hpp>
|
2011-03-16 14:32:04 +01:00
|
|
|
#include <mapnik/metawriter_factory.hpp>
|
2012-02-12 03:55:13 +01:00
|
|
|
#include <mapnik/text_placements/simple.hpp>
|
|
|
|
#include <mapnik/text_placements/list.hpp>
|
|
|
|
#include <mapnik/text_placements/dummy.hpp>
|
2007-10-08 19:42:41 +02:00
|
|
|
|
2006-10-04 13:22:18 +02:00
|
|
|
// boost
|
2006-10-03 10:39:43 +02:00
|
|
|
#include <boost/algorithm/string.hpp>
|
2007-09-25 20:47:12 +02:00
|
|
|
#include <boost/optional.hpp>
|
2006-10-03 10:39:43 +02:00
|
|
|
#include <boost/property_tree/ptree.hpp>
|
|
|
|
#include <boost/property_tree/xml_parser.hpp>
|
2007-10-08 19:42:41 +02:00
|
|
|
|
|
|
|
// stl
|
|
|
|
#include <iostream>
|
2006-10-03 10:39:43 +02:00
|
|
|
|
Patch from David Eastcott :
1. Modified Text Symbolizer
a) corrected line fragment centering (for 2nd and subsequent lines, when line breaks occur).
b) adjusted vertical alignment calculation so that:
i) middle -> has the center of the text line(s) at the point origin
ii) bottom -> has the text line(s) below the point origin
iii) top -> has the text line(s) above the point origin
c) added new text_symbolizer attribute: 'wrap_before', value range: true/false, default == false
allows line breaks at first wrap_char before wrap_width as an alternative to the original
which was to create the line break at the first wrap_char after wrap_width
d) added new text_symbolizer attribute: 'horizontal_alignment', value range: left/middle/right, default == middle
i) left -> has all text line(s) to left of the point origin
ii) middle -> has all text line(s) centered on the the point origin
iii) right -> has all text line(s) to the right of the point origin
NOTE: dx, dy position adjustments are applied after alignments and before Justify.
e) added new text_symbolizer attribute: 'justify_alignment', value range: left/middle/right, default == middle
i) left -> after alignments, has all text line(s) are left justified (left to right reading)
ii) middle -> after alignments, has all text line(s) center justified
iii) right -> after alignments, has all text line(s) right justified (right to left reading)
f) added new text_symbolizer attribute: 'opacity', value range: 0.0 thru 1.0; 1.0 == fully opaque
g) modified positioning to compensate for both line_spacing and character_spacing, to ensure proper
centering of the text envelope. Also ensure that centering occurs correctly even if no wrapping
occurs. Line spacing is uniform and consistent and compensates for errors between text_size and
the actual size (ci.height is inconsistent, depending on case and character); fixes issue with
multi-line text where some lines have a slight gap and others are compressed together.
2. Modified shield_symbolizer
a) added the attributes:
i) allow_overlap
ii) vertical_alignment
iii) horizontal_alignment
iv) justify_alignment
v) wrap_width
vi) wrap_character
vii) wrap_before
viii) text_convert
ix) line_spacing
x) character_spacing
xi) opacity
b) added new shield_symbolizer attribute: 'unlock_image', value range: true/false, default == false
i) false == image and text placement behaviour same as before
ii) true == image placement independant of text, image is always centered at geometry point, text placed per attributes,
dx/dy only affect text.
Allows user to create point markers with text, but both the text and image rendering collision detection are done
as a pair (they come and go together - solves problem if using point_symbolizer and text_symbolizers where one or the
other are omitted due to overlaps, but not both)
c) extended choices for the attribute 'placement' to include vertex; effect is limited to the shield_symbolizer
Allows an attempted placement at every vertex available, gives additional shield placement volume when using line geometry
d) ensured that the text placement was not updating the detector unless a shield image was actually placed.
e) added new shield_symbolizer attribute: 'no_text', value range: true/false, default = false
When set true, the text for the feature is ignored ('space' subsituted) so that pure graphic symbols can be used
and no text is rendered over top of them.
2009-10-19 15:52:53 +02:00
|
|
|
namespace mapnik
|
2006-10-03 10:39:43 +02:00
|
|
|
{
|
2010-04-09 20:46:25 +02:00
|
|
|
using boost::property_tree::ptree;
|
|
|
|
using boost::optional;
|
|
|
|
|
|
|
|
|
|
|
|
class serialize_symbolizer : public boost::static_visitor<>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
serialize_symbolizer( ptree & r , bool explicit_defaults):
|
2010-06-02 13:03:30 +02:00
|
|
|
rule_(r),
|
|
|
|
explicit_defaults_(explicit_defaults) {}
|
2010-04-09 20:46:25 +02:00
|
|
|
|
2012-03-03 03:51:19 +01:00
|
|
|
void operator () ( point_symbolizer const& sym )
|
2010-04-09 20:46:25 +02:00
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
ptree & sym_node = rule_.push_back(
|
|
|
|
ptree::value_type("PointSymbolizer", ptree()))->second;
|
2010-04-09 20:46:25 +02:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
add_image_attributes( sym_node, sym );
|
2010-04-09 20:46:25 +02:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
point_symbolizer dfl;
|
|
|
|
if (sym.get_allow_overlap() != dfl.get_allow_overlap() || explicit_defaults_ )
|
|
|
|
{
|
2011-02-05 04:11:09 +01:00
|
|
|
set_attr( sym_node, "allow-overlap", sym.get_allow_overlap() );
|
2010-06-02 13:03:30 +02:00
|
|
|
}
|
|
|
|
if ( sym.get_opacity() != dfl.get_opacity() || explicit_defaults_ )
|
|
|
|
{
|
|
|
|
set_attr( sym_node, "opacity", sym.get_opacity() );
|
|
|
|
}
|
2011-02-02 03:17:06 +01:00
|
|
|
if ( sym.get_point_placement() != dfl.get_point_placement() || explicit_defaults_ )
|
|
|
|
{
|
|
|
|
set_attr( sym_node, "placement", sym.get_point_placement() );
|
|
|
|
}
|
2010-08-12 02:11:01 +02:00
|
|
|
add_metawriter_attributes(sym_node, sym);
|
2010-04-09 20:46:25 +02:00
|
|
|
}
|
|
|
|
|
2012-03-03 03:51:19 +01:00
|
|
|
void operator () ( line_symbolizer const& sym )
|
2010-04-09 20:46:25 +02:00
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
ptree & sym_node = rule_.push_back(
|
|
|
|
ptree::value_type("LineSymbolizer", ptree()))->second;
|
2010-08-19 17:45:53 +02:00
|
|
|
|
|
|
|
const stroke & strk = sym.get_stroke();
|
|
|
|
add_stroke_attributes(sym_node, strk);
|
2010-08-12 02:11:01 +02:00
|
|
|
add_metawriter_attributes(sym_node, sym);
|
2010-06-02 13:03:30 +02:00
|
|
|
}
|
2012-03-23 00:37:24 +01:00
|
|
|
|
2012-03-03 03:51:19 +01:00
|
|
|
void operator () ( line_pattern_symbolizer const& sym )
|
2010-04-09 20:46:25 +02:00
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
ptree & sym_node = rule_.push_back(
|
|
|
|
ptree::value_type("LinePatternSymbolizer",
|
|
|
|
ptree()))->second;
|
2010-04-09 20:46:25 +02:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
add_image_attributes( sym_node, sym );
|
2010-08-12 02:11:01 +02:00
|
|
|
add_metawriter_attributes(sym_node, sym);
|
2010-04-09 20:46:25 +02:00
|
|
|
}
|
|
|
|
|
2012-03-03 03:51:19 +01:00
|
|
|
void operator () ( polygon_symbolizer const& sym )
|
2010-04-09 20:46:25 +02:00
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
ptree & sym_node = rule_.push_back(
|
|
|
|
ptree::value_type("PolygonSymbolizer", ptree()))->second;
|
|
|
|
polygon_symbolizer dfl;
|
2010-04-09 20:46:25 +02:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
if ( sym.get_fill() != dfl.get_fill() || explicit_defaults_ )
|
|
|
|
{
|
|
|
|
set_attr( sym_node, "fill", sym.get_fill() );
|
|
|
|
}
|
|
|
|
if ( sym.get_opacity() != dfl.get_opacity() || explicit_defaults_ )
|
|
|
|
{
|
|
|
|
set_attr( sym_node, "fill-opacity", sym.get_opacity() );
|
|
|
|
}
|
|
|
|
if ( sym.get_gamma() != dfl.get_gamma() || explicit_defaults_ )
|
|
|
|
{
|
|
|
|
set_attr( sym_node, "gamma", sym.get_gamma() );
|
|
|
|
}
|
2012-01-12 16:58:10 +01:00
|
|
|
if ( sym.get_gamma_method() != dfl.get_gamma_method() || explicit_defaults_ )
|
|
|
|
{
|
|
|
|
set_attr( sym_node, "gamma-method", sym.get_gamma_method() );
|
|
|
|
}
|
2010-08-12 02:11:01 +02:00
|
|
|
add_metawriter_attributes(sym_node, sym);
|
2010-04-09 20:46:25 +02:00
|
|
|
}
|
|
|
|
|
2012-03-03 03:51:19 +01:00
|
|
|
void operator () ( polygon_pattern_symbolizer const& sym )
|
2010-04-09 20:46:25 +02:00
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
ptree & sym_node = rule_.push_back(
|
|
|
|
ptree::value_type("PolygonPatternSymbolizer",
|
|
|
|
ptree()))->second;
|
2010-06-21 00:36:49 +02:00
|
|
|
polygon_pattern_symbolizer dfl(parse_path(""));
|
|
|
|
|
|
|
|
if ( sym.get_alignment() != dfl.get_alignment() || explicit_defaults_ )
|
|
|
|
{
|
|
|
|
set_attr( sym_node, "alignment", sym.get_alignment() );
|
|
|
|
}
|
2011-06-29 00:37:35 +02:00
|
|
|
if ( sym.get_gamma() != dfl.get_gamma() || explicit_defaults_ )
|
|
|
|
{
|
|
|
|
set_attr( sym_node, "gamma", sym.get_gamma() );
|
|
|
|
}
|
2012-01-13 18:20:03 +01:00
|
|
|
if ( sym.get_gamma_method() != dfl.get_gamma_method() || explicit_defaults_ )
|
|
|
|
{
|
|
|
|
set_attr( sym_node, "gamma-method", sym.get_gamma_method() );
|
|
|
|
}
|
2010-06-02 13:03:30 +02:00
|
|
|
add_image_attributes( sym_node, sym );
|
2010-08-12 02:11:01 +02:00
|
|
|
add_metawriter_attributes(sym_node, sym);
|
2010-04-09 20:46:25 +02:00
|
|
|
}
|
|
|
|
|
2012-03-03 03:51:19 +01:00
|
|
|
void operator () ( raster_symbolizer const& sym )
|
2010-04-09 20:46:25 +02:00
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
ptree & sym_node = rule_.push_back(
|
|
|
|
ptree::value_type("RasterSymbolizer", ptree()))->second;
|
|
|
|
raster_symbolizer dfl;
|
|
|
|
|
|
|
|
if ( sym.get_mode() != dfl.get_mode() || explicit_defaults_ )
|
|
|
|
{
|
|
|
|
set_attr( sym_node, "mode", sym.get_mode() );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( sym.get_scaling() != dfl.get_scaling() || explicit_defaults_ )
|
|
|
|
{
|
|
|
|
set_attr( sym_node, "scaling", sym.get_scaling() );
|
|
|
|
}
|
2012-02-02 02:53:35 +01:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
if ( sym.get_opacity() != dfl.get_opacity() || explicit_defaults_ )
|
|
|
|
{
|
|
|
|
set_attr( sym_node, "opacity", sym.get_opacity() );
|
|
|
|
}
|
|
|
|
|
2011-09-16 14:21:21 +02:00
|
|
|
if ( sym.get_mesh_size() != dfl.get_mesh_size() || explicit_defaults_ )
|
|
|
|
{
|
|
|
|
set_attr( sym_node, "mesh-size", sym.get_mesh_size() );
|
|
|
|
}
|
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
if (sym.get_colorizer()) {
|
|
|
|
serialize_raster_colorizer(sym_node, sym.get_colorizer(),
|
|
|
|
explicit_defaults_);
|
|
|
|
}
|
2010-08-12 02:11:01 +02:00
|
|
|
//Note: raster_symbolizer doesn't support metawriters
|
2010-04-09 20:46:25 +02:00
|
|
|
}
|
|
|
|
|
2012-03-03 03:51:19 +01:00
|
|
|
void operator () ( shield_symbolizer const& sym )
|
2010-04-09 20:46:25 +02:00
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
ptree & sym_node = rule_.push_back(
|
|
|
|
ptree::value_type("ShieldSymbolizer",
|
|
|
|
ptree()))->second;
|
|
|
|
|
2012-01-29 17:33:43 +01:00
|
|
|
add_font_attributes(sym_node, sym);
|
|
|
|
add_image_attributes(sym_node, sym);
|
2010-08-12 02:11:01 +02:00
|
|
|
add_metawriter_attributes(sym_node, sym);
|
2010-06-02 13:03:30 +02:00
|
|
|
|
|
|
|
// pseudo-default-construct a shield_symbolizer. It is used
|
|
|
|
// to avoid printing of attributes with default values without
|
|
|
|
// repeating the default values here.
|
|
|
|
// maybe add a real, explicit default-ctor?
|
|
|
|
|
2012-01-29 17:33:43 +01:00
|
|
|
shield_symbolizer dfl;
|
2012-02-02 02:53:35 +01:00
|
|
|
|
2012-01-29 17:33:43 +01:00
|
|
|
if (sym.get_unlock_image() != dfl.get_unlock_image() || explicit_defaults_)
|
2010-12-11 03:07:47 +01:00
|
|
|
{
|
2012-01-29 17:33:43 +01:00
|
|
|
set_attr(sym_node, "unlock-image", sym.get_unlock_image());
|
2010-12-11 03:07:47 +01:00
|
|
|
}
|
2012-01-29 17:33:43 +01:00
|
|
|
if (sym.get_text_opacity() != dfl.get_text_opacity() || explicit_defaults_)
|
2010-12-11 03:07:47 +01:00
|
|
|
{
|
2012-01-29 17:33:43 +01:00
|
|
|
set_attr(sym_node, "text-opacity", sym.get_text_opacity());
|
2010-12-11 03:07:47 +01:00
|
|
|
}
|
|
|
|
position displacement = sym.get_shield_displacement();
|
2012-01-29 17:33:43 +01:00
|
|
|
if (displacement.first != dfl.get_shield_displacement().first || explicit_defaults_)
|
2010-12-11 03:07:47 +01:00
|
|
|
{
|
2012-01-29 17:33:43 +01:00
|
|
|
set_attr(sym_node, "shield-dx", displacement.first);
|
2010-12-11 03:07:47 +01:00
|
|
|
}
|
2012-01-29 17:33:43 +01:00
|
|
|
if (displacement.second != dfl.get_shield_displacement().second || explicit_defaults_)
|
2010-12-11 03:07:47 +01:00
|
|
|
{
|
2012-01-29 17:33:43 +01:00
|
|
|
set_attr(sym_node, "shield-dy", displacement.second);
|
2010-12-11 03:07:47 +01:00
|
|
|
}
|
|
|
|
|
2010-04-09 20:46:25 +02:00
|
|
|
}
|
|
|
|
|
2012-03-03 03:51:19 +01:00
|
|
|
void operator () ( text_symbolizer const& sym )
|
2010-04-09 20:46:25 +02:00
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
ptree & sym_node = rule_.push_back(
|
|
|
|
ptree::value_type("TextSymbolizer",
|
|
|
|
ptree()))->second;
|
2010-04-09 20:46:25 +02:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
add_font_attributes( sym_node, sym);
|
2010-08-12 02:11:01 +02:00
|
|
|
add_metawriter_attributes(sym_node, sym);
|
2010-04-09 20:46:25 +02:00
|
|
|
}
|
|
|
|
|
2012-03-03 03:51:19 +01:00
|
|
|
void operator () ( building_symbolizer const& sym )
|
2010-04-09 20:46:25 +02:00
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
ptree & sym_node = rule_.push_back(
|
|
|
|
ptree::value_type("BuildingSymbolizer", ptree()))->second;
|
|
|
|
building_symbolizer dfl;
|
2010-04-09 20:46:25 +02:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
if ( sym.get_fill() != dfl.get_fill() || explicit_defaults_ )
|
|
|
|
{
|
|
|
|
set_attr( sym_node, "fill", sym.get_fill() );
|
|
|
|
}
|
|
|
|
if ( sym.get_opacity() != dfl.get_opacity() || explicit_defaults_ )
|
|
|
|
{
|
|
|
|
set_attr( sym_node, "fill-opacity", sym.get_opacity() );
|
|
|
|
}
|
2011-12-13 15:28:18 +01:00
|
|
|
|
|
|
|
set_attr( sym_node, "height", to_expression_string(*sym.height()) );
|
|
|
|
|
2010-08-12 02:11:01 +02:00
|
|
|
add_metawriter_attributes(sym_node, sym);
|
2010-04-09 20:46:25 +02:00
|
|
|
}
|
|
|
|
|
2010-04-15 23:42:28 +02:00
|
|
|
void operator () ( markers_symbolizer const& sym)
|
2010-04-09 20:46:25 +02:00
|
|
|
{
|
2010-04-15 23:42:28 +02:00
|
|
|
ptree & sym_node = rule_.push_back(
|
2010-06-02 13:03:30 +02:00
|
|
|
ptree::value_type("MarkersSymbolizer", ptree()))->second;
|
2010-05-30 05:16:51 +02:00
|
|
|
markers_symbolizer dfl(parse_path("")); //TODO: Parameter?
|
2010-06-02 13:03:30 +02:00
|
|
|
std::string const& filename = path_processor_type::to_string( *sym.get_filename());
|
|
|
|
if ( ! filename.empty() ) {
|
|
|
|
set_attr( sym_node, "file", filename );
|
|
|
|
}
|
2010-05-30 05:16:51 +02:00
|
|
|
if (sym.get_allow_overlap() != dfl.get_allow_overlap() || explicit_defaults_)
|
|
|
|
{
|
2011-02-05 04:11:09 +01:00
|
|
|
set_attr( sym_node, "allow-overlap", sym.get_allow_overlap() );
|
2010-05-30 05:16:51 +02:00
|
|
|
}
|
2012-03-18 23:30:37 +01:00
|
|
|
if (sym.get_ignore_placement() != dfl.get_ignore_placement() || explicit_defaults_)
|
|
|
|
{
|
|
|
|
set_attr( sym_node, "ignore-placement", sym.get_ignore_placement() );
|
|
|
|
}
|
2010-05-30 05:16:51 +02:00
|
|
|
if (sym.get_spacing() != dfl.get_spacing() || explicit_defaults_)
|
|
|
|
{
|
|
|
|
set_attr( sym_node, "spacing", sym.get_spacing() );
|
|
|
|
}
|
|
|
|
if (sym.get_max_error() != dfl.get_max_error() || explicit_defaults_)
|
|
|
|
{
|
2011-02-05 04:11:09 +01:00
|
|
|
set_attr( sym_node, "max-error", sym.get_max_error() );
|
2010-05-30 05:16:51 +02:00
|
|
|
}
|
|
|
|
if (sym.get_fill() != dfl.get_fill() || explicit_defaults_)
|
|
|
|
{
|
|
|
|
set_attr( sym_node, "fill", sym.get_fill() );
|
|
|
|
}
|
2011-04-18 03:17:57 +02:00
|
|
|
if (sym.get_opacity() != dfl.get_opacity() || explicit_defaults_)
|
|
|
|
{
|
|
|
|
set_attr( sym_node, "opacity", sym.get_opacity() );
|
|
|
|
}
|
2011-02-02 04:47:52 +01:00
|
|
|
if (sym.get_width() != dfl.get_width() || explicit_defaults_)
|
|
|
|
{
|
|
|
|
set_attr( sym_node, "width", sym.get_width() );
|
|
|
|
}
|
|
|
|
if (sym.get_height() != dfl.get_height() || explicit_defaults_)
|
|
|
|
{
|
|
|
|
set_attr( sym_node, "height", sym.get_height() );
|
|
|
|
}
|
2011-04-18 03:17:57 +02:00
|
|
|
if (sym.get_marker_type() != dfl.get_marker_type() || explicit_defaults_)
|
|
|
|
{
|
|
|
|
set_attr( sym_node, "marker-type", sym.get_marker_type() );
|
|
|
|
}
|
|
|
|
if (sym.get_marker_placement() != dfl.get_marker_placement() || explicit_defaults_)
|
|
|
|
{
|
|
|
|
set_attr( sym_node, "placement", sym.get_marker_placement() );
|
|
|
|
}
|
2012-05-01 17:52:19 +02:00
|
|
|
std::string tr_str = sym.get_image_transform_string();
|
2011-04-18 03:17:57 +02:00
|
|
|
if (tr_str != "matrix(1, 0, 0, 1, 0, 0)" || explicit_defaults_ )
|
|
|
|
{
|
2012-05-01 17:52:19 +02:00
|
|
|
set_attr( sym_node, "image-transform", tr_str );
|
2011-04-18 03:17:57 +02:00
|
|
|
}
|
2010-08-19 19:33:01 +02:00
|
|
|
|
|
|
|
const stroke & strk = sym.get_stroke();
|
|
|
|
add_stroke_attributes(sym_node, strk);
|
|
|
|
|
2010-08-12 02:11:01 +02:00
|
|
|
add_metawriter_attributes(sym_node, sym);
|
2010-04-09 20:46:25 +02:00
|
|
|
}
|
|
|
|
|
2012-03-21 16:47:33 +01:00
|
|
|
template <typename Symbolizer>
|
|
|
|
void operator () ( Symbolizer const& sym)
|
|
|
|
{
|
|
|
|
// not-supported
|
|
|
|
#ifdef MAPNIK_DEBUG
|
|
|
|
std::clog << typeid(sym).name() << " is not supported" << std::endl;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2010-04-09 20:46:25 +02:00
|
|
|
private:
|
|
|
|
serialize_symbolizer();
|
2012-02-02 02:53:35 +01:00
|
|
|
|
2011-05-04 02:20:17 +02:00
|
|
|
void serialize_raster_colorizer(ptree & sym_node,
|
|
|
|
raster_colorizer_ptr const& colorizer,
|
|
|
|
bool explicit_defaults)
|
|
|
|
{
|
|
|
|
ptree & col_node = sym_node.push_back(
|
|
|
|
ptree::value_type("RasterColorizer", ptree() ))->second;
|
|
|
|
|
|
|
|
set_attr(col_node, "default-mode", colorizer->get_default_mode());
|
|
|
|
set_attr(col_node, "default-color", colorizer->get_default_color());
|
|
|
|
set_attr(col_node, "epsilon", colorizer->get_epsilon());
|
|
|
|
|
|
|
|
unsigned i;
|
|
|
|
colorizer_stops const &stops = colorizer->get_stops();
|
|
|
|
for (i=0; i<stops.size(); i++) {
|
|
|
|
ptree &stop_node = col_node.push_back( ptree::value_type("stop", ptree()) )->second;
|
|
|
|
set_attr(stop_node, "value", stops[i].get_value());
|
|
|
|
set_attr(stop_node, "color", stops[i].get_color());
|
|
|
|
set_attr(stop_node, "mode", stops[i].get_mode().as_string());
|
2011-09-16 15:32:16 +02:00
|
|
|
if (stops[i].get_label()!=std::string(""))
|
|
|
|
set_attr(stop_node, "label", stops[i].get_label());
|
2011-05-04 02:20:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2012-02-02 02:53:35 +01:00
|
|
|
|
2010-04-09 20:46:25 +02:00
|
|
|
void add_image_attributes(ptree & node, const symbolizer_with_image & sym)
|
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
std::string const& filename = path_processor_type::to_string( *sym.get_filename());
|
|
|
|
if ( ! filename.empty() ) {
|
|
|
|
set_attr( node, "file", filename );
|
|
|
|
}
|
2010-12-11 03:07:47 +01:00
|
|
|
if (sym.get_opacity() != 1.0 || explicit_defaults_ )
|
|
|
|
{
|
|
|
|
set_attr( node, "opacity", sym.get_opacity() );
|
|
|
|
}
|
2010-04-09 20:46:25 +02:00
|
|
|
}
|
|
|
|
void add_font_attributes(ptree & node, const text_symbolizer & sym)
|
|
|
|
{
|
2012-01-22 16:06:28 +01:00
|
|
|
text_placements_ptr p = sym.get_placement_options();
|
2012-02-16 00:17:22 +01:00
|
|
|
p->defaults.to_xml(node, explicit_defaults_);
|
2012-01-22 16:06:28 +01:00
|
|
|
/* Known types:
|
2012-02-02 02:53:35 +01:00
|
|
|
- text_placements_dummy: no handling required
|
|
|
|
- text_placements_simple: positions string
|
|
|
|
- text_placements_list: list string
|
|
|
|
*/
|
2012-01-22 16:06:28 +01:00
|
|
|
text_placements_simple *simple = dynamic_cast<text_placements_simple *>(p.get());
|
|
|
|
text_placements_list *list = dynamic_cast<text_placements_list *>(p.get());
|
|
|
|
if (simple) {
|
2012-02-16 00:17:22 +01:00
|
|
|
set_attr(node, "placement-type", "simple");
|
2012-01-22 16:06:28 +01:00
|
|
|
set_attr(node, "placements", simple->get_positions());
|
|
|
|
}
|
|
|
|
if (list) {
|
2012-02-16 00:17:22 +01:00
|
|
|
set_attr(node, "placement-type", "list");
|
2012-01-22 16:06:28 +01:00
|
|
|
unsigned i;
|
2012-02-16 00:17:22 +01:00
|
|
|
//dfl = last properties passed as default so only attributes that change are actually written
|
|
|
|
text_symbolizer_properties *dfl = &(list->defaults);
|
2012-01-22 16:06:28 +01:00
|
|
|
for (i=0; i < list->size(); i++) {
|
|
|
|
ptree &placement_node = node.push_back(ptree::value_type("Placement", ptree()))->second;
|
|
|
|
list->get(i).to_xml(placement_node, explicit_defaults_, *dfl);
|
|
|
|
dfl = &(list->get(i));
|
|
|
|
}
|
2010-06-02 13:03:30 +02:00
|
|
|
}
|
2010-04-09 20:46:25 +02:00
|
|
|
}
|
2010-08-12 02:11:01 +02:00
|
|
|
|
2010-08-19 17:45:53 +02:00
|
|
|
|
|
|
|
void add_stroke_attributes(ptree & node, const stroke & strk)
|
|
|
|
{
|
|
|
|
|
|
|
|
stroke dfl = stroke();
|
2012-02-02 02:53:35 +01:00
|
|
|
|
2010-08-19 17:45:53 +02:00
|
|
|
if ( strk.get_color() != dfl.get_color() || explicit_defaults_ )
|
|
|
|
{
|
|
|
|
set_attr( node, "stroke", strk.get_color() );
|
|
|
|
}
|
|
|
|
if ( strk.get_width() != dfl.get_width() || explicit_defaults_ )
|
|
|
|
{
|
|
|
|
set_attr( node, "stroke-width", strk.get_width() );
|
|
|
|
}
|
|
|
|
if ( strk.get_opacity() != dfl.get_opacity() || explicit_defaults_ )
|
|
|
|
{
|
|
|
|
set_attr( node, "stroke-opacity", strk.get_opacity() );
|
|
|
|
}
|
|
|
|
if ( strk.get_line_join() != dfl.get_line_join() || explicit_defaults_ )
|
|
|
|
{
|
|
|
|
set_attr( node, "stroke-linejoin", strk.get_line_join() );
|
|
|
|
}
|
|
|
|
if ( strk.get_line_cap() != dfl.get_line_cap() || explicit_defaults_ )
|
|
|
|
{
|
|
|
|
set_attr( node, "stroke-linecap", strk.get_line_cap() );
|
|
|
|
}
|
2011-02-02 02:46:14 +01:00
|
|
|
if ( strk.get_gamma() != dfl.get_gamma() || explicit_defaults_ )
|
|
|
|
{
|
|
|
|
set_attr( node, "stroke-gamma", strk.get_gamma());
|
|
|
|
}
|
2012-01-13 18:20:03 +01:00
|
|
|
if ( strk.get_gamma_method() != dfl.get_gamma_method() || explicit_defaults_ )
|
|
|
|
{
|
|
|
|
set_attr( node, "stroke-gamma-method", strk.get_gamma_method() );
|
|
|
|
}
|
2011-02-02 02:46:14 +01:00
|
|
|
if ( strk.dash_offset() != dfl.dash_offset() || explicit_defaults_ )
|
|
|
|
{
|
2011-05-17 02:33:24 +02:00
|
|
|
set_attr( node, "stroke-dash-offset", strk.dash_offset());
|
2011-02-02 02:46:14 +01:00
|
|
|
}
|
2010-08-19 17:45:53 +02:00
|
|
|
if ( ! strk.get_dash_array().empty() )
|
|
|
|
{
|
|
|
|
std::ostringstream os;
|
|
|
|
const dash_array & dashes = strk.get_dash_array();
|
|
|
|
for (unsigned i = 0; i < dashes.size(); ++i) {
|
|
|
|
os << dashes[i].first << ", " << dashes[i].second;
|
|
|
|
if ( i + 1 < dashes.size() ) os << ", ";
|
|
|
|
}
|
|
|
|
set_attr( node, "stroke-dasharray", os.str() );
|
|
|
|
}
|
2012-02-02 02:53:35 +01:00
|
|
|
|
2010-08-19 17:45:53 +02:00
|
|
|
}
|
2012-04-18 10:47:28 +02:00
|
|
|
void add_metawriter_attributes(ptree & node, symbolizer_base const& sym)
|
2010-08-12 02:11:01 +02:00
|
|
|
{
|
|
|
|
if (!sym.get_metawriter_name().empty() || explicit_defaults_) {
|
|
|
|
set_attr(node, "meta-writer", sym.get_metawriter_name());
|
|
|
|
}
|
|
|
|
if (!sym.get_metawriter_properties_overrides().empty() || explicit_defaults_) {
|
|
|
|
set_attr(node, "meta-output", sym.get_metawriter_properties_overrides().to_string());
|
|
|
|
}
|
2012-04-18 10:47:28 +02:00
|
|
|
|
|
|
|
std::string tr_str = sym.get_transform_string();
|
|
|
|
if (tr_str != "matrix(1, 0, 0, 1, 0, 0)" || explicit_defaults_ ) // FIXME !!
|
|
|
|
{
|
|
|
|
set_attr( node, "transform", tr_str );
|
|
|
|
}
|
|
|
|
|
2010-08-12 02:11:01 +02:00
|
|
|
}
|
|
|
|
|
2010-04-09 20:46:25 +02:00
|
|
|
ptree & rule_;
|
|
|
|
bool explicit_defaults_;
|
|
|
|
};
|
|
|
|
|
2011-01-13 22:35:01 +01:00
|
|
|
void serialize_rule( ptree & style_node, const rule & r, bool explicit_defaults)
|
2010-04-09 20:46:25 +02:00
|
|
|
{
|
|
|
|
ptree & rule_node = style_node.push_back(
|
2010-06-02 13:03:30 +02:00
|
|
|
ptree::value_type("Rule", ptree() ))->second;
|
2010-04-09 20:46:25 +02:00
|
|
|
|
2011-01-13 22:35:01 +01:00
|
|
|
rule dfl;
|
|
|
|
if ( r.get_name() != dfl.get_name() )
|
2010-04-09 20:46:25 +02:00
|
|
|
{
|
2011-01-13 22:35:01 +01:00
|
|
|
set_attr(rule_node, "name", r.get_name());
|
2010-04-09 20:46:25 +02:00
|
|
|
}
|
2012-02-02 02:53:35 +01:00
|
|
|
|
2011-01-13 22:35:01 +01:00
|
|
|
if ( r.has_else_filter() )
|
2010-04-09 20:46:25 +02:00
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
rule_node.push_back( ptree::value_type(
|
|
|
|
"ElseFilter", ptree()));
|
2010-04-09 20:46:25 +02:00
|
|
|
}
|
2011-08-30 19:38:27 +02:00
|
|
|
else if ( r.has_also_filter() )
|
|
|
|
{
|
|
|
|
rule_node.push_back( ptree::value_type(
|
|
|
|
"AlsoFilter", ptree()));
|
|
|
|
}
|
2010-04-09 20:46:25 +02:00
|
|
|
else
|
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
// filters were not comparable, perhaps should now compare expressions?
|
2011-01-13 22:35:01 +01:00
|
|
|
expression_ptr const& expr = r.get_filter();
|
2010-06-02 13:03:30 +02:00
|
|
|
std::string filter = mapnik::to_expression_string(*expr);
|
|
|
|
std::string default_filter = mapnik::to_expression_string(*dfl.get_filter());
|
2012-02-02 02:53:35 +01:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
if ( filter != default_filter)
|
|
|
|
{
|
|
|
|
rule_node.push_back( ptree::value_type(
|
|
|
|
"Filter", ptree()))->second.put_value( filter );
|
|
|
|
}
|
2010-04-09 20:46:25 +02:00
|
|
|
}
|
2007-09-25 20:47:12 +02:00
|
|
|
|
2011-01-13 22:35:01 +01:00
|
|
|
if (r.get_min_scale() != dfl.get_min_scale() )
|
2010-04-09 20:46:25 +02:00
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
ptree & min_scale = rule_node.push_back( ptree::value_type(
|
|
|
|
"MinScaleDenominator", ptree()))->second;
|
2011-01-13 22:35:01 +01:00
|
|
|
min_scale.put_value( r.get_min_scale() );
|
2010-04-09 20:46:25 +02:00
|
|
|
}
|
2007-09-25 20:47:12 +02:00
|
|
|
|
2011-01-13 22:35:01 +01:00
|
|
|
if (r.get_max_scale() != dfl.get_max_scale() )
|
2010-04-09 20:46:25 +02:00
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
ptree & max_scale = rule_node.push_back( ptree::value_type(
|
|
|
|
"MaxScaleDenominator", ptree()))->second;
|
2011-01-13 22:35:01 +01:00
|
|
|
max_scale.put_value( r.get_max_scale() );
|
2010-04-09 20:46:25 +02:00
|
|
|
}
|
|
|
|
|
2011-01-13 22:35:01 +01:00
|
|
|
rule::symbolizers::const_iterator begin = r.get_symbolizers().begin();
|
|
|
|
rule::symbolizers::const_iterator end = r.get_symbolizers().end();
|
2010-04-09 20:46:25 +02:00
|
|
|
serialize_symbolizer serializer( rule_node, explicit_defaults);
|
|
|
|
std::for_each( begin, end , boost::apply_visitor( serializer ));
|
|
|
|
}
|
|
|
|
|
|
|
|
void serialize_style( ptree & map_node, Map::const_style_iterator style_it, bool explicit_defaults )
|
|
|
|
{
|
2012-03-03 03:51:19 +01:00
|
|
|
feature_type_style const& style = style_it->second;
|
|
|
|
std::string const& name = style_it->first;
|
2011-02-01 23:55:50 +01:00
|
|
|
filter_mode_e filter_mode = style.get_filter_mode();
|
2010-04-09 20:46:25 +02:00
|
|
|
|
|
|
|
ptree & style_node = map_node.push_back(
|
2010-06-02 13:03:30 +02:00
|
|
|
ptree::value_type("Style", ptree()))->second;
|
2010-04-09 20:46:25 +02:00
|
|
|
|
|
|
|
set_attr(style_node, "name", name);
|
2012-02-02 02:53:35 +01:00
|
|
|
|
2011-02-01 23:55:50 +01:00
|
|
|
feature_type_style dfl;
|
|
|
|
if (filter_mode != dfl.get_filter_mode() || explicit_defaults)
|
|
|
|
{
|
|
|
|
set_attr(style_node, "filter-mode", filter_mode);
|
|
|
|
}
|
2007-09-25 20:47:12 +02:00
|
|
|
|
2010-04-09 20:46:25 +02:00
|
|
|
rules::const_iterator it = style.get_rules().begin();
|
|
|
|
rules::const_iterator end = style.get_rules().end();
|
|
|
|
for (; it != end; ++it)
|
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
serialize_rule( style_node, * it , explicit_defaults);
|
2007-09-25 20:47:12 +02:00
|
|
|
}
|
|
|
|
|
2010-04-09 20:46:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void serialize_fontset( ptree & map_node, Map::const_fontset_iterator fontset_it )
|
|
|
|
{
|
2012-03-03 03:51:19 +01:00
|
|
|
font_set const& fontset = fontset_it->second;
|
|
|
|
std::string const& name = fontset_it->first;
|
2010-04-09 20:46:25 +02:00
|
|
|
|
|
|
|
ptree & fontset_node = map_node.push_back(
|
2010-06-02 13:03:30 +02:00
|
|
|
ptree::value_type("FontSet", ptree()))->second;
|
2010-04-09 20:46:25 +02:00
|
|
|
|
|
|
|
set_attr(fontset_node, "name", name);
|
|
|
|
|
|
|
|
std::vector<std::string>::const_iterator it = fontset.get_face_names().begin();
|
|
|
|
std::vector<std::string>::const_iterator end = fontset.get_face_names().end();
|
|
|
|
for (; it != end; ++it)
|
2007-09-25 20:47:12 +02:00
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
ptree & font_node = fontset_node.push_back(
|
|
|
|
ptree::value_type("Font", ptree()))->second;
|
2011-02-05 04:11:09 +01:00
|
|
|
set_attr(font_node, "face-name", *it);
|
2010-04-09 20:46:25 +02:00
|
|
|
}
|
Patch from David Eastcott :
1. Modified Text Symbolizer
a) corrected line fragment centering (for 2nd and subsequent lines, when line breaks occur).
b) adjusted vertical alignment calculation so that:
i) middle -> has the center of the text line(s) at the point origin
ii) bottom -> has the text line(s) below the point origin
iii) top -> has the text line(s) above the point origin
c) added new text_symbolizer attribute: 'wrap_before', value range: true/false, default == false
allows line breaks at first wrap_char before wrap_width as an alternative to the original
which was to create the line break at the first wrap_char after wrap_width
d) added new text_symbolizer attribute: 'horizontal_alignment', value range: left/middle/right, default == middle
i) left -> has all text line(s) to left of the point origin
ii) middle -> has all text line(s) centered on the the point origin
iii) right -> has all text line(s) to the right of the point origin
NOTE: dx, dy position adjustments are applied after alignments and before Justify.
e) added new text_symbolizer attribute: 'justify_alignment', value range: left/middle/right, default == middle
i) left -> after alignments, has all text line(s) are left justified (left to right reading)
ii) middle -> after alignments, has all text line(s) center justified
iii) right -> after alignments, has all text line(s) right justified (right to left reading)
f) added new text_symbolizer attribute: 'opacity', value range: 0.0 thru 1.0; 1.0 == fully opaque
g) modified positioning to compensate for both line_spacing and character_spacing, to ensure proper
centering of the text envelope. Also ensure that centering occurs correctly even if no wrapping
occurs. Line spacing is uniform and consistent and compensates for errors between text_size and
the actual size (ci.height is inconsistent, depending on case and character); fixes issue with
multi-line text where some lines have a slight gap and others are compressed together.
2. Modified shield_symbolizer
a) added the attributes:
i) allow_overlap
ii) vertical_alignment
iii) horizontal_alignment
iv) justify_alignment
v) wrap_width
vi) wrap_character
vii) wrap_before
viii) text_convert
ix) line_spacing
x) character_spacing
xi) opacity
b) added new shield_symbolizer attribute: 'unlock_image', value range: true/false, default == false
i) false == image and text placement behaviour same as before
ii) true == image placement independant of text, image is always centered at geometry point, text placed per attributes,
dx/dy only affect text.
Allows user to create point markers with text, but both the text and image rendering collision detection are done
as a pair (they come and go together - solves problem if using point_symbolizer and text_symbolizers where one or the
other are omitted due to overlaps, but not both)
c) extended choices for the attribute 'placement' to include vertex; effect is limited to the shield_symbolizer
Allows an attempted placement at every vertex available, gives additional shield placement volume when using line geometry
d) ensured that the text placement was not updating the detector unless a shield image was actually placed.
e) added new shield_symbolizer attribute: 'no_text', value range: true/false, default = false
When set true, the text for the feature is ignored ('space' subsituted) so that pure graphic symbols can be used
and no text is rendered over top of them.
2009-10-19 15:52:53 +02:00
|
|
|
|
2010-04-09 20:46:25 +02:00
|
|
|
}
|
2007-09-25 20:47:12 +02:00
|
|
|
|
2010-04-09 20:46:25 +02:00
|
|
|
void serialize_datasource( ptree & layer_node, datasource_ptr datasource)
|
|
|
|
{
|
|
|
|
ptree & datasource_node = layer_node.push_back(
|
2010-06-02 13:03:30 +02:00
|
|
|
ptree::value_type("Datasource", ptree()))->second;
|
2007-09-25 20:47:12 +02:00
|
|
|
|
2010-04-09 20:46:25 +02:00
|
|
|
parameters::const_iterator it = datasource->params().begin();
|
|
|
|
parameters::const_iterator end = datasource->params().end();
|
|
|
|
for (; it != end; ++it)
|
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
boost::property_tree::ptree & param_node = datasource_node.push_back(
|
|
|
|
boost::property_tree::ptree::value_type("Parameter",
|
|
|
|
boost::property_tree::ptree()))->second;
|
|
|
|
param_node.put("<xmlattr>.name", it->first );
|
|
|
|
param_node.put_value( it->second );
|
2007-09-25 20:47:12 +02:00
|
|
|
|
|
|
|
}
|
2010-04-09 20:46:25 +02:00
|
|
|
}
|
2007-09-25 20:47:12 +02:00
|
|
|
|
2011-12-05 23:46:38 +01:00
|
|
|
class serialize_type : public boost::static_visitor<>
|
|
|
|
{
|
2012-02-02 02:53:35 +01:00
|
|
|
public:
|
2011-12-05 23:46:38 +01:00
|
|
|
serialize_type( boost::property_tree::ptree & node):
|
|
|
|
node_(node) {}
|
|
|
|
|
|
|
|
void operator () ( int val ) const
|
|
|
|
{
|
|
|
|
node_.put("<xmlattr>.type", "int" );
|
|
|
|
}
|
|
|
|
|
|
|
|
void operator () ( double val ) const
|
|
|
|
{
|
|
|
|
node_.put("<xmlattr>.type", "float" );
|
|
|
|
}
|
|
|
|
|
|
|
|
void operator () ( std::string const& val ) const
|
|
|
|
{
|
|
|
|
node_.put("<xmlattr>.type", "string" );
|
|
|
|
}
|
|
|
|
|
|
|
|
void operator () ( mapnik::value_null val ) const
|
|
|
|
{
|
|
|
|
node_.put("<xmlattr>.type", "string" );
|
|
|
|
}
|
|
|
|
|
2012-02-02 02:53:35 +01:00
|
|
|
private:
|
2011-12-05 23:46:38 +01:00
|
|
|
boost::property_tree::ptree & node_;
|
|
|
|
};
|
|
|
|
|
2011-12-03 02:48:09 +01:00
|
|
|
void serialize_parameters( ptree & map_node, mapnik::parameters const& params)
|
|
|
|
{
|
2011-12-06 03:22:25 +01:00
|
|
|
if (params.size()) {
|
|
|
|
ptree & params_node = map_node.push_back(
|
|
|
|
ptree::value_type("Parameters", ptree()))->second;
|
2012-02-02 02:53:35 +01:00
|
|
|
|
2011-12-06 03:22:25 +01:00
|
|
|
parameters::const_iterator it = params.begin();
|
|
|
|
parameters::const_iterator end = params.end();
|
|
|
|
for (; it != end; ++it)
|
|
|
|
{
|
|
|
|
boost::property_tree::ptree & param_node = params_node.push_back(
|
|
|
|
boost::property_tree::ptree::value_type("Parameter",
|
|
|
|
boost::property_tree::ptree()))->second;
|
|
|
|
param_node.put("<xmlattr>.name", it->first );
|
|
|
|
param_node.put_value( it->second );
|
|
|
|
boost::apply_visitor(serialize_type(param_node),it->second);
|
|
|
|
}
|
2011-12-03 02:48:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-04-09 20:46:25 +02:00
|
|
|
void serialize_layer( ptree & map_node, const layer & layer, bool explicit_defaults )
|
|
|
|
{
|
|
|
|
ptree & layer_node = map_node.push_back(
|
2010-06-02 13:03:30 +02:00
|
|
|
ptree::value_type("Layer", ptree()))->second;
|
2012-02-02 02:53:35 +01:00
|
|
|
|
2010-04-09 20:46:25 +02:00
|
|
|
if ( layer.name() != "" )
|
2009-01-17 21:18:41 +01:00
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
set_attr( layer_node, "name", layer.name() );
|
2010-04-09 20:46:25 +02:00
|
|
|
}
|
2012-02-02 02:53:35 +01:00
|
|
|
|
2010-04-09 20:46:25 +02:00
|
|
|
if ( layer.srs() != "" )
|
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
set_attr( layer_node, "srs", layer.srs() );
|
2010-04-09 20:46:25 +02:00
|
|
|
}
|
|
|
|
|
2012-03-12 16:39:59 +01:00
|
|
|
if ( !layer.active() || explicit_defaults )
|
2010-04-09 20:46:25 +02:00
|
|
|
{
|
2012-03-12 16:39:59 +01:00
|
|
|
set_attr/*<bool>*/( layer_node, "status", layer.active() );
|
2010-04-09 20:46:25 +02:00
|
|
|
}
|
2012-02-02 02:53:35 +01:00
|
|
|
|
2010-04-09 20:46:25 +02:00
|
|
|
if ( layer.clear_label_cache() || explicit_defaults )
|
2012-02-02 02:53:35 +01:00
|
|
|
{
|
2011-02-05 04:11:09 +01:00
|
|
|
set_attr/*<bool>*/( layer_node, "clear-label-cache", layer.clear_label_cache() );
|
2010-04-09 20:46:25 +02:00
|
|
|
}
|
2009-01-17 21:18:41 +01:00
|
|
|
|
2012-03-12 16:39:59 +01:00
|
|
|
if ( layer.min_zoom() )
|
2010-04-09 20:46:25 +02:00
|
|
|
{
|
2012-03-12 16:39:59 +01:00
|
|
|
set_attr( layer_node, "minzoom", layer.min_zoom() );
|
2010-04-09 20:46:25 +02:00
|
|
|
}
|
2009-01-17 21:18:41 +01:00
|
|
|
|
2012-03-12 16:39:59 +01:00
|
|
|
if ( layer.max_zoom() != std::numeric_limits<double>::max() )
|
2010-04-09 20:46:25 +02:00
|
|
|
{
|
2012-03-12 16:39:59 +01:00
|
|
|
set_attr( layer_node, "maxzoom", layer.max_zoom() );
|
2009-01-17 21:18:41 +01:00
|
|
|
}
|
|
|
|
|
2012-03-12 16:39:59 +01:00
|
|
|
if ( layer.queryable() || explicit_defaults )
|
2007-09-25 20:47:12 +02:00
|
|
|
{
|
2012-03-12 16:39:59 +01:00
|
|
|
set_attr( layer_node, "queryable", layer.queryable() );
|
2010-04-09 20:46:25 +02:00
|
|
|
}
|
2007-09-25 20:47:12 +02:00
|
|
|
|
2011-03-01 18:09:29 +01:00
|
|
|
if ( layer.cache_features() || explicit_defaults )
|
2012-02-02 02:53:35 +01:00
|
|
|
{
|
2011-03-01 18:09:29 +01:00
|
|
|
set_attr/*<bool>*/( layer_node, "cache-features", layer.cache_features() );
|
|
|
|
}
|
|
|
|
|
2011-10-13 01:30:18 +02:00
|
|
|
if ( layer.group_by() != "" || explicit_defaults )
|
|
|
|
{
|
|
|
|
set_attr( layer_node, "group-by", layer.group_by() );
|
|
|
|
}
|
|
|
|
|
2010-04-09 20:46:25 +02:00
|
|
|
std::vector<std::string> const& style_names = layer.styles();
|
|
|
|
for (unsigned i = 0; i < style_names.size(); ++i)
|
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
boost::property_tree::ptree & style_node = layer_node.push_back(
|
|
|
|
boost::property_tree::ptree::value_type("StyleName",
|
|
|
|
boost::property_tree::ptree()))->second;
|
|
|
|
style_node.put_value( style_names[i] );
|
2010-04-09 20:46:25 +02:00
|
|
|
}
|
Patch from David Eastcott :
1. Modified Text Symbolizer
a) corrected line fragment centering (for 2nd and subsequent lines, when line breaks occur).
b) adjusted vertical alignment calculation so that:
i) middle -> has the center of the text line(s) at the point origin
ii) bottom -> has the text line(s) below the point origin
iii) top -> has the text line(s) above the point origin
c) added new text_symbolizer attribute: 'wrap_before', value range: true/false, default == false
allows line breaks at first wrap_char before wrap_width as an alternative to the original
which was to create the line break at the first wrap_char after wrap_width
d) added new text_symbolizer attribute: 'horizontal_alignment', value range: left/middle/right, default == middle
i) left -> has all text line(s) to left of the point origin
ii) middle -> has all text line(s) centered on the the point origin
iii) right -> has all text line(s) to the right of the point origin
NOTE: dx, dy position adjustments are applied after alignments and before Justify.
e) added new text_symbolizer attribute: 'justify_alignment', value range: left/middle/right, default == middle
i) left -> after alignments, has all text line(s) are left justified (left to right reading)
ii) middle -> after alignments, has all text line(s) center justified
iii) right -> after alignments, has all text line(s) right justified (right to left reading)
f) added new text_symbolizer attribute: 'opacity', value range: 0.0 thru 1.0; 1.0 == fully opaque
g) modified positioning to compensate for both line_spacing and character_spacing, to ensure proper
centering of the text envelope. Also ensure that centering occurs correctly even if no wrapping
occurs. Line spacing is uniform and consistent and compensates for errors between text_size and
the actual size (ci.height is inconsistent, depending on case and character); fixes issue with
multi-line text where some lines have a slight gap and others are compressed together.
2. Modified shield_symbolizer
a) added the attributes:
i) allow_overlap
ii) vertical_alignment
iii) horizontal_alignment
iv) justify_alignment
v) wrap_width
vi) wrap_character
vii) wrap_before
viii) text_convert
ix) line_spacing
x) character_spacing
xi) opacity
b) added new shield_symbolizer attribute: 'unlock_image', value range: true/false, default == false
i) false == image and text placement behaviour same as before
ii) true == image placement independant of text, image is always centered at geometry point, text placed per attributes,
dx/dy only affect text.
Allows user to create point markers with text, but both the text and image rendering collision detection are done
as a pair (they come and go together - solves problem if using point_symbolizer and text_symbolizers where one or the
other are omitted due to overlaps, but not both)
c) extended choices for the attribute 'placement' to include vertex; effect is limited to the shield_symbolizer
Allows an attempted placement at every vertex available, gives additional shield placement volume when using line geometry
d) ensured that the text placement was not updating the detector unless a shield image was actually placed.
e) added new shield_symbolizer attribute: 'no_text', value range: true/false, default = false
When set true, the text for the feature is ignored ('space' subsituted) so that pure graphic symbols can be used
and no text is rendered over top of them.
2009-10-19 15:52:53 +02:00
|
|
|
|
2010-04-09 20:46:25 +02:00
|
|
|
datasource_ptr datasource = layer.datasource();
|
|
|
|
if ( datasource )
|
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
serialize_datasource( layer_node, datasource );
|
2007-09-25 20:47:12 +02:00
|
|
|
}
|
2010-04-09 20:46:25 +02:00
|
|
|
}
|
|
|
|
|
2010-08-12 02:11:01 +02:00
|
|
|
void serialize_metawriter(ptree & map_node, Map::const_metawriter_iterator metawriter_it, bool explicit_defaults)
|
|
|
|
{
|
|
|
|
std::string const& name = metawriter_it->first;
|
|
|
|
metawriter_ptr const& metawriter = metawriter_it->second;
|
|
|
|
|
|
|
|
ptree & metawriter_node = map_node.push_back(
|
|
|
|
ptree::value_type("MetaWriter", ptree()))->second;
|
|
|
|
|
|
|
|
set_attr(metawriter_node, "name", name);
|
2011-03-16 14:32:04 +01:00
|
|
|
metawriter_save(metawriter, metawriter_node, explicit_defaults);
|
2010-08-12 02:11:01 +02:00
|
|
|
}
|
|
|
|
|
2010-04-09 20:46:25 +02:00
|
|
|
void serialize_map(ptree & pt, Map const & map, bool explicit_defaults)
|
|
|
|
{
|
|
|
|
|
|
|
|
ptree & map_node = pt.push_back(ptree::value_type("Map", ptree() ))->second;
|
2007-09-25 20:47:12 +02:00
|
|
|
|
2010-04-09 20:46:25 +02:00
|
|
|
set_attr( map_node, "srs", map.srs() );
|
|
|
|
|
2010-07-19 13:10:03 +02:00
|
|
|
optional<color> const& c = map.background();
|
2010-04-09 20:46:25 +02:00
|
|
|
if ( c )
|
2007-09-25 20:47:12 +02:00
|
|
|
{
|
2010-07-19 14:01:34 +02:00
|
|
|
set_attr( map_node, "background-color", * c );
|
2010-04-09 20:46:25 +02:00
|
|
|
}
|
2009-01-11 19:55:29 +01:00
|
|
|
|
2010-07-19 13:10:03 +02:00
|
|
|
optional<std::string> const& image_filename = map.background_image();
|
|
|
|
if ( image_filename )
|
|
|
|
{
|
|
|
|
set_attr( map_node, "background-image", *image_filename );
|
|
|
|
}
|
2012-02-02 02:53:35 +01:00
|
|
|
|
2010-04-09 20:46:25 +02:00
|
|
|
unsigned buffer_size = map.buffer_size();
|
|
|
|
if ( buffer_size || explicit_defaults)
|
|
|
|
{
|
2012-02-02 02:53:35 +01:00
|
|
|
set_attr( map_node, "buffer-size", buffer_size );
|
2010-04-09 20:46:25 +02:00
|
|
|
}
|
2011-05-26 01:48:07 +02:00
|
|
|
|
|
|
|
std::string const& base_path = map.base_path();
|
|
|
|
if ( !base_path.empty() || explicit_defaults)
|
|
|
|
{
|
2012-02-02 02:53:35 +01:00
|
|
|
set_attr( map_node, "base", base_path );
|
2011-05-26 01:48:07 +02:00
|
|
|
}
|
2009-01-11 19:55:29 +01:00
|
|
|
|
2011-04-14 04:32:51 +02:00
|
|
|
optional<box2d<double> > const& maximum_extent = map.maximum_extent();
|
|
|
|
if ( maximum_extent)
|
|
|
|
{
|
|
|
|
std::ostringstream s;
|
|
|
|
s << std::setprecision(16)
|
|
|
|
<< maximum_extent->minx() << "," << maximum_extent->miny() << ","
|
|
|
|
<< maximum_extent->maxx() << "," << maximum_extent->maxy();
|
2012-02-02 02:53:35 +01:00
|
|
|
set_attr( map_node, "maximum-extent", s.str() );
|
2011-04-14 04:32:51 +02:00
|
|
|
}
|
|
|
|
|
2010-04-09 20:46:25 +02:00
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
Map::const_fontset_iterator it = map.fontsets().begin();
|
|
|
|
Map::const_fontset_iterator end = map.fontsets().end();
|
|
|
|
for (; it != end; ++it)
|
|
|
|
{
|
|
|
|
serialize_fontset( map_node, it);
|
|
|
|
}
|
2010-04-09 20:46:25 +02:00
|
|
|
}
|
2009-01-11 19:55:29 +01:00
|
|
|
|
2011-12-03 02:48:09 +01:00
|
|
|
serialize_parameters( map_node, map.get_extra_parameters());
|
2010-10-07 21:34:36 +02:00
|
|
|
|
2010-04-09 20:46:25 +02:00
|
|
|
Map::const_style_iterator it = map.styles().begin();
|
|
|
|
Map::const_style_iterator end = map.styles().end();
|
|
|
|
for (; it != end; ++it)
|
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
serialize_style( map_node, it, explicit_defaults);
|
2010-04-09 20:46:25 +02:00
|
|
|
}
|
Patch from David Eastcott :
1. Modified Text Symbolizer
a) corrected line fragment centering (for 2nd and subsequent lines, when line breaks occur).
b) adjusted vertical alignment calculation so that:
i) middle -> has the center of the text line(s) at the point origin
ii) bottom -> has the text line(s) below the point origin
iii) top -> has the text line(s) above the point origin
c) added new text_symbolizer attribute: 'wrap_before', value range: true/false, default == false
allows line breaks at first wrap_char before wrap_width as an alternative to the original
which was to create the line break at the first wrap_char after wrap_width
d) added new text_symbolizer attribute: 'horizontal_alignment', value range: left/middle/right, default == middle
i) left -> has all text line(s) to left of the point origin
ii) middle -> has all text line(s) centered on the the point origin
iii) right -> has all text line(s) to the right of the point origin
NOTE: dx, dy position adjustments are applied after alignments and before Justify.
e) added new text_symbolizer attribute: 'justify_alignment', value range: left/middle/right, default == middle
i) left -> after alignments, has all text line(s) are left justified (left to right reading)
ii) middle -> after alignments, has all text line(s) center justified
iii) right -> after alignments, has all text line(s) right justified (right to left reading)
f) added new text_symbolizer attribute: 'opacity', value range: 0.0 thru 1.0; 1.0 == fully opaque
g) modified positioning to compensate for both line_spacing and character_spacing, to ensure proper
centering of the text envelope. Also ensure that centering occurs correctly even if no wrapping
occurs. Line spacing is uniform and consistent and compensates for errors between text_size and
the actual size (ci.height is inconsistent, depending on case and character); fixes issue with
multi-line text where some lines have a slight gap and others are compressed together.
2. Modified shield_symbolizer
a) added the attributes:
i) allow_overlap
ii) vertical_alignment
iii) horizontal_alignment
iv) justify_alignment
v) wrap_width
vi) wrap_character
vii) wrap_before
viii) text_convert
ix) line_spacing
x) character_spacing
xi) opacity
b) added new shield_symbolizer attribute: 'unlock_image', value range: true/false, default == false
i) false == image and text placement behaviour same as before
ii) true == image placement independant of text, image is always centered at geometry point, text placed per attributes,
dx/dy only affect text.
Allows user to create point markers with text, but both the text and image rendering collision detection are done
as a pair (they come and go together - solves problem if using point_symbolizer and text_symbolizers where one or the
other are omitted due to overlaps, but not both)
c) extended choices for the attribute 'placement' to include vertex; effect is limited to the shield_symbolizer
Allows an attempted placement at every vertex available, gives additional shield placement volume when using line geometry
d) ensured that the text placement was not updating the detector unless a shield image was actually placed.
e) added new shield_symbolizer attribute: 'no_text', value range: true/false, default = false
When set true, the text for the feature is ignored ('space' subsituted) so that pure graphic symbols can be used
and no text is rendered over top of them.
2009-10-19 15:52:53 +02:00
|
|
|
|
2010-04-09 20:46:25 +02:00
|
|
|
std::vector<layer> const & layers = map.layers();
|
|
|
|
for (unsigned i = 0; i < layers.size(); ++i )
|
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
serialize_layer( map_node, layers[i], explicit_defaults );
|
2009-07-24 08:15:58 +02:00
|
|
|
}
|
2010-08-12 02:11:01 +02:00
|
|
|
|
|
|
|
Map::const_metawriter_iterator m_it = map.begin_metawriters();
|
|
|
|
Map::const_metawriter_iterator m_end = map.end_metawriters();
|
|
|
|
for (; m_it != m_end; ++m_it) {
|
|
|
|
serialize_metawriter(map_node, m_it, explicit_defaults);
|
|
|
|
}
|
2010-04-09 20:46:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void save_map(Map const & map, std::string const& filename, bool explicit_defaults)
|
|
|
|
{
|
|
|
|
ptree pt;
|
|
|
|
serialize_map(pt,map,explicit_defaults);
|
|
|
|
write_xml(filename,pt,std::locale(),boost::property_tree::xml_writer_make_settings(' ',4));
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string save_map_to_string(Map const & map, bool explicit_defaults)
|
|
|
|
{
|
|
|
|
ptree pt;
|
|
|
|
serialize_map(pt,map,explicit_defaults);
|
|
|
|
std::ostringstream ss;
|
|
|
|
write_xml(ss,pt,boost::property_tree::xml_writer_make_settings(' ',4));
|
|
|
|
return ss.str();
|
|
|
|
}
|
2009-07-24 08:15:58 +02:00
|
|
|
|
2006-10-03 10:39:43 +02:00
|
|
|
}
|