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
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
// mapnik
|
2012-08-28 00:58:49 +00:00
|
|
|
#include <mapnik/svg/output/svg_renderer.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
|
|
|
|
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.
|
2012-05-31 11:13:09 +00:00
|
|
|
typedef coord_transform<CoordTransform, geometry_type> path_type;
|
2010-08-10 08:25:09 +00:00
|
|
|
|
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.
|
|
|
|
BOOST_FOREACH(symbolizer const& sym, syms)
|
|
|
|
{
|
|
|
|
boost::apply_visitor(symbol_dispatch(*this, feature, prj_trans), sym);
|
|
|
|
}
|
2010-08-10 08:25:09 +00:00
|
|
|
|
2010-11-03 13:19:15 +00:00
|
|
|
// generate path output for each geometry of the current feature.
|
|
|
|
for(unsigned i=0; i<feature.num_geometries(); ++i)
|
|
|
|
{
|
2012-11-29 01:45:05 +00:00
|
|
|
geometry_type & geom = feature.get_geometry(i);
|
|
|
|
if(geom.size() > 0)
|
2010-11-03 13:19:15 +00:00
|
|
|
{
|
2012-11-29 01:45:05 +00:00
|
|
|
path_type path(t_, geom, prj_trans);
|
|
|
|
generator_.generate_path(path, path_attributes_);
|
2010-11-03 13:19:15 +00:00
|
|
|
}
|
|
|
|
}
|
2010-08-10 08:25:09 +00:00
|
|
|
|
2010-11-03 13:19:15 +00:00
|
|
|
// set the previously collected values back to their defaults
|
|
|
|
// for the feature that will be processed next.
|
|
|
|
path_attributes_.reset();
|
2010-08-10 08:25:09 +00:00
|
|
|
|
2010-11-03 13:19:15 +00:00
|
|
|
return true;
|
|
|
|
};
|
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
|
|
|
|
|
|
|
}
|