2010-08-10 08:25:09 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
*
|
2011-10-23 13:04:25 +00:00
|
|
|
* Copyright (C) 2011 Artem Pavlenko
|
2010-08-10 08:25:09 +00: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
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2014-04-24 19:54:18 +00:00
|
|
|
#if defined(SVG_RENDERER)
|
|
|
|
|
2010-08-10 08:25:09 +00:00
|
|
|
// mapnik
|
2014-07-23 21:02:36 +00:00
|
|
|
#include <mapnik/feature.hpp>
|
2012-08-28 00:58:49 +00:00
|
|
|
#include <mapnik/svg/output/svg_renderer.hpp>
|
2014-07-24 21:31:59 +00:00
|
|
|
#include <mapnik/svg/geometry_svg_generator_impl.hpp>
|
|
|
|
#include <mapnik/svg/output/svg_output_grammars.hpp>
|
|
|
|
#include <boost/spirit/include/karma.hpp>
|
|
|
|
#include <mapnik/svg/output/svg_output_attributes.hpp>
|
2010-08-10 08:25:09 +00:00
|
|
|
|
2012-02-02 01:53:35 +00:00
|
|
|
namespace mapnik {
|
2010-08-10 08:25:09 +00:00
|
|
|
|
2014-08-12 09:40:38 +00:00
|
|
|
struct symbol_type_dispatch : public util::static_visitor<bool>
|
2013-06-25 03:28:02 +00:00
|
|
|
{
|
|
|
|
template <typename Symbolizer>
|
|
|
|
bool operator()(Symbolizer const& sym) const
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
bool operator()(line_symbolizer const& sym) const
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
bool operator()(polygon_symbolizer const& sym) const
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
bool is_path_based(symbolizer const& sym)
|
|
|
|
{
|
2014-08-12 09:40:38 +00:00
|
|
|
return util::apply_visitor(symbol_type_dispatch(), sym);
|
2013-06-25 03:28:02 +00:00
|
|
|
}
|
|
|
|
|
2014-07-24 21:31:59 +00:00
|
|
|
template <typename OutputIterator, typename PathType>
|
|
|
|
void generate_path(OutputIterator & output_iterator, PathType const& path, svg::path_output_attributes const& path_attributes)
|
|
|
|
{
|
|
|
|
using path_dash_array_grammar = svg::svg_path_dash_array_grammar<OutputIterator>;
|
|
|
|
using path_attributes_grammar = svg::svg_path_attributes_grammar<OutputIterator>;
|
|
|
|
static const path_attributes_grammar attributes_grammar;
|
|
|
|
static const path_dash_array_grammar dash_array_grammar;
|
|
|
|
static const svg::svg_path_generator<OutputIterator,PathType> svg_path_grammer;
|
|
|
|
boost::spirit::karma::lit_type lit;
|
|
|
|
boost::spirit::karma::generate(output_iterator, lit("<path ") << svg_path_grammer, path);
|
|
|
|
boost::spirit::karma::generate(output_iterator, lit(" ") << dash_array_grammar, path_attributes.stroke_dasharray());
|
|
|
|
boost::spirit::karma::generate(output_iterator, lit(" ") << attributes_grammar << lit("/>\n"), path_attributes);
|
|
|
|
}
|
|
|
|
|
2010-11-03 13:19:15 +00:00
|
|
|
template <typename OutputIterator>
|
2012-10-10 17:51:06 +00:00
|
|
|
bool svg_renderer<OutputIterator>::process(rule::symbolizers const& syms,
|
2012-11-01 17:05:50 +00:00
|
|
|
mapnik::feature_impl & feature,
|
2010-11-03 13:19:15 +00:00
|
|
|
proj_transform const& prj_trans)
|
|
|
|
{
|
|
|
|
// svg renderer supports processing of multiple symbolizers.
|
2014-08-28 09:17:15 +00:00
|
|
|
using path_type = coord_transform<view_transform, geometry_type>;
|
2010-08-10 08:25:09 +00:00
|
|
|
|
2013-06-25 03:28:02 +00:00
|
|
|
bool process_path = false;
|
2010-11-03 13:19:15 +00:00
|
|
|
// process each symbolizer to collect its (path) information.
|
|
|
|
// path information (attributes from line_ and polygon_ symbolizers)
|
|
|
|
// is collected with the path_attributes_ data member.
|
2013-12-11 15:25:23 +00:00
|
|
|
for (auto const& sym : syms)
|
2010-11-03 13:19:15 +00:00
|
|
|
{
|
2013-06-25 03:28:02 +00:00
|
|
|
if (is_path_based(sym))
|
|
|
|
{
|
|
|
|
process_path = true;
|
|
|
|
}
|
2014-08-12 09:40:38 +00:00
|
|
|
util::apply_visitor(symbol_dispatch(*this, feature, prj_trans), sym);
|
2010-11-03 13:19:15 +00:00
|
|
|
}
|
2010-08-10 08:25:09 +00:00
|
|
|
|
2013-06-25 03:28:02 +00:00
|
|
|
if (process_path)
|
2010-11-03 13:19:15 +00:00
|
|
|
{
|
2013-06-25 03:28:02 +00:00
|
|
|
// generate path output for each geometry of the current feature.
|
2013-12-11 15:25:23 +00:00
|
|
|
for (auto & geom : feature.paths())
|
2010-11-03 13:19:15 +00:00
|
|
|
{
|
2013-06-25 03:28:02 +00:00
|
|
|
if(geom.size() > 0)
|
|
|
|
{
|
2013-12-06 14:14:14 +00:00
|
|
|
path_type path(common_.t_, geom, prj_trans);
|
2014-07-24 21:31:59 +00:00
|
|
|
generate_path(generator_.output_iterator_, path, path_attributes_);
|
2013-06-25 03:28:02 +00:00
|
|
|
}
|
2010-11-03 13:19:15 +00:00
|
|
|
}
|
2013-06-25 03:28:02 +00:00
|
|
|
// set the previously collected values back to their defaults
|
|
|
|
// for the feature that will be processed next.
|
|
|
|
path_attributes_.reset();
|
2010-11-03 13:19:15 +00:00
|
|
|
}
|
|
|
|
return true;
|
2013-01-04 02:06:07 +00:00
|
|
|
}
|
2010-08-10 08:25:09 +00:00
|
|
|
|
2012-10-10 17:51:06 +00:00
|
|
|
template bool svg_renderer<std::ostream_iterator<char> >::process(rule::symbolizers const& syms,
|
2012-11-01 17:05:50 +00:00
|
|
|
mapnik::feature_impl & feature,
|
2010-11-03 13:19:15 +00:00
|
|
|
proj_transform const& prj_trans);
|
2010-08-10 08:25:09 +00:00
|
|
|
|
|
|
|
}
|
2014-04-24 19:54:18 +00:00
|
|
|
|
|
|
|
#endif
|