mapnik/src/markers_symbolizer.cpp

192 lines
4.4 KiB
C++
Raw Normal View History

2010-06-06 14:10:36 +02:00
/*****************************************************************************
2012-02-02 02:53:35 +01:00
*
2010-06-06 14:10:36 +02:00
* This file is part of Mapnik (c++ mapping toolkit)
*
* Copyright (C) 2011 Artem Pavlenko
2010-06-06 14:10:36 +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
*
*****************************************************************************/
// mapnik
2010-06-06 14:10:36 +02:00
#include <mapnik/markers_symbolizer.hpp>
// boost
#include <boost/make_shared.hpp>
2010-06-06 14:10:36 +02:00
namespace mapnik {
static const char * marker_placement_strings[] = {
"point",
"line",
""
};
IMPLEMENT_ENUM( marker_placement_e, marker_placement_strings )
static const char * marker_type_strings[] = {
"arrow",
"ellipse",
""
};
IMPLEMENT_ENUM( marker_type_e, marker_type_strings )
2010-06-06 14:10:36 +02:00
markers_symbolizer::markers_symbolizer()
2012-04-08 03:56:32 +02:00
: symbolizer_with_image(path_expression_ptr(new path_expression)),
symbolizer_base(),
ignore_placement_(false),
allow_overlap_(false),
fill_(color(0,0,255)),
spacing_(100.0),
max_error_(0.2),
width_(boost::make_shared<expr_node>(10.0)),
height_(boost::make_shared<expr_node>(10.0)),
2012-04-08 03:56:32 +02:00
stroke_(),
marker_p_(MARKER_LINE_PLACEMENT),
marker_type_(MARKER_ARROW) {}
2012-02-02 02:53:35 +01:00
markers_symbolizer::markers_symbolizer(path_expression_ptr filename)
: symbolizer_with_image(filename),
symbolizer_base(),
ignore_placement_(false),
2012-04-08 03:56:32 +02:00
allow_overlap_(false),
2012-02-02 02:53:35 +01:00
fill_(color(0,0,255)),
spacing_(100.0),
max_error_(0.2),
width_(boost::make_shared<expr_node>(10.0)),
height_(boost::make_shared<expr_node>(10.0)),
stroke_(),
marker_p_(MARKER_LINE_PLACEMENT),
marker_type_(MARKER_ARROW) {}
2010-06-06 14:10:36 +02:00
2012-02-02 02:53:35 +01:00
markers_symbolizer::markers_symbolizer(markers_symbolizer const& rhs)
: symbolizer_with_image(rhs),
symbolizer_base(rhs),
ignore_placement_(rhs.ignore_placement_),
2012-04-08 03:56:32 +02:00
allow_overlap_(rhs.allow_overlap_),
2012-02-02 02:53:35 +01:00
fill_(rhs.fill_),
spacing_(rhs.spacing_),
max_error_(rhs.max_error_),
width_(rhs.width_),
height_(rhs.height_),
stroke_(rhs.stroke_),
marker_p_(rhs.marker_p_),
marker_type_(rhs.marker_type_) {}
2012-02-02 02:53:35 +01:00
void markers_symbolizer::set_ignore_placement(bool ignore_placement)
{
ignore_placement_ = ignore_placement;
}
bool markers_symbolizer::get_ignore_placement() const
{
return ignore_placement_;
}
2010-06-06 14:10:36 +02:00
void markers_symbolizer::set_allow_overlap(bool overlap)
{
allow_overlap_ = overlap;
}
2012-02-02 02:53:35 +01:00
2010-06-06 14:10:36 +02:00
bool markers_symbolizer::get_allow_overlap() const
{
return allow_overlap_;
}
void markers_symbolizer::set_spacing(double spacing)
{
spacing_ = spacing;
}
2012-02-02 02:53:35 +01:00
double markers_symbolizer::get_spacing() const
2010-06-06 14:10:36 +02:00
{
return spacing_;
}
void markers_symbolizer::set_max_error(double max_error)
{
max_error_ = max_error;
}
2012-02-02 02:53:35 +01:00
double markers_symbolizer::get_max_error() const
2010-06-06 14:10:36 +02:00
{
return max_error_;
}
2012-02-02 02:53:35 +01:00
2010-06-06 14:10:36 +02:00
void markers_symbolizer::set_fill(color fill)
{
fill_ = fill;
}
2012-02-02 02:53:35 +01:00
2010-06-06 14:10:36 +02:00
color const& markers_symbolizer::get_fill() const
{
return fill_;
}
void markers_symbolizer::set_width(expression_ptr width)
{
width_ = width;
}
expression_ptr markers_symbolizer::get_width() const
{
return width_;
}
void markers_symbolizer::set_height(expression_ptr height)
{
height_ = height;
}
expression_ptr markers_symbolizer::get_height() const
{
return height_;
}
stroke const& markers_symbolizer::get_stroke() const
{
return stroke_;
}
2012-02-02 02:53:35 +01:00
void markers_symbolizer::set_stroke(stroke const& stroke)
{
stroke_ = stroke;
}
void markers_symbolizer::set_marker_placement(marker_placement_e marker_p)
{
marker_p_ = marker_p;
}
marker_placement_e markers_symbolizer::get_marker_placement() const
{
return marker_p_;
}
void markers_symbolizer::set_marker_type(marker_type_e marker_type)
{
marker_type_ = marker_type;
}
marker_type_e markers_symbolizer::get_marker_type() const
{
return marker_type_;
}
2010-06-06 14:10:36 +02:00
}