2006-03-31 10:32:02 +00:00
|
|
|
/*****************************************************************************
|
2012-02-01 17:53:35 -08:00
|
|
|
*
|
2006-03-31 10:32:02 +00:00
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
*
|
2014-11-20 15:25:50 +01:00
|
|
|
* Copyright (C) 2014 Artem Pavlenko
|
2006-02-07 14:41:41 +00:00
|
|
|
*
|
2006-03-31 10:32:02 +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.
|
2006-02-07 14:41:41 +00:00
|
|
|
*
|
2006-03-31 10:32:02 +00:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
2006-02-07 14:41:41 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2006-03-31 10:32:02 +00:00
|
|
|
* 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
|
2006-02-07 14:41:41 +00:00
|
|
|
*
|
2006-03-31 10:32:02 +00:00
|
|
|
*****************************************************************************/
|
2006-02-07 14:41:41 +00:00
|
|
|
|
2011-10-23 16:09:47 +02:00
|
|
|
#ifndef MAPNIK_FEATURE_STYLE_PROCESSOR_HPP
|
|
|
|
#define MAPNIK_FEATURE_STYLE_PROCESSOR_HPP
|
2006-02-07 14:41:41 +00:00
|
|
|
|
2011-10-13 01:30:18 +02:00
|
|
|
// mapnik
|
2014-07-22 23:57:06 -07:00
|
|
|
#include <mapnik/box2d.hpp>
|
|
|
|
#include <mapnik/featureset.hpp>
|
2013-05-09 18:22:40 -07:00
|
|
|
#include <mapnik/config.hpp>
|
2014-07-22 23:57:06 -07:00
|
|
|
#include <mapnik/feature_style_processor_context.hpp>
|
2013-05-16 17:08:42 +02:00
|
|
|
|
2011-10-13 01:30:18 +02:00
|
|
|
// stl
|
2011-09-01 00:44:27 +00:00
|
|
|
#include <set>
|
|
|
|
#include <string>
|
2006-02-07 14:41:41 +00:00
|
|
|
|
|
|
|
namespace mapnik
|
2011-09-01 00:44:27 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
class Map;
|
|
|
|
class layer;
|
|
|
|
class projection;
|
2012-08-15 10:26:20 -07:00
|
|
|
class proj_transform;
|
2013-01-03 18:06:07 -08:00
|
|
|
class feature_type_style;
|
2013-02-20 13:25:57 -08:00
|
|
|
class rule_cache;
|
2013-05-16 17:08:42 +02:00
|
|
|
struct layer_rendering_material;
|
2012-02-01 17:53:35 -08:00
|
|
|
|
2012-12-13 09:33:55 +00:00
|
|
|
enum eAttributeCollectionPolicy
|
|
|
|
{
|
|
|
|
DEFAULT = 0,
|
|
|
|
COLLECT_ALL = 1
|
|
|
|
};
|
|
|
|
|
2009-12-16 20:02:06 +00:00
|
|
|
template <typename Processor>
|
2013-05-09 18:22:40 -07:00
|
|
|
class MAPNIK_DECL feature_style_processor
|
2009-12-16 20:02:06 +00:00
|
|
|
{
|
|
|
|
public:
|
2013-02-26 16:52:51 -05:00
|
|
|
explicit feature_style_processor(Map const& m,
|
|
|
|
double scale_factor = 1.0);
|
2011-04-19 04:23:11 +00:00
|
|
|
|
|
|
|
/*!
|
2013-01-02 13:53:10 -08:00
|
|
|
* \brief apply renderer to all map layers.
|
2011-04-19 04:23:11 +00:00
|
|
|
*/
|
2013-02-26 16:49:39 -05:00
|
|
|
void apply(double scale_denom_override=0.0);
|
2011-04-19 04:23:11 +00:00
|
|
|
|
2011-04-26 21:44:52 +00:00
|
|
|
/*!
|
2013-01-02 13:53:10 -08:00
|
|
|
* \brief apply renderer to a single layer, providing pre-populated set of query attribute names.
|
2011-04-26 21:44:52 +00:00
|
|
|
*/
|
2013-02-26 16:52:51 -05:00
|
|
|
void apply(mapnik::layer const& lyr,
|
|
|
|
std::set<std::string>& names,
|
|
|
|
double scale_denom_override=0.0);
|
2013-05-16 17:08:42 +02:00
|
|
|
|
2011-04-19 04:23:11 +00:00
|
|
|
/*!
|
2013-01-02 13:53:10 -08:00
|
|
|
* \brief render a layer given a projection and scale.
|
2011-04-19 04:23:11 +00:00
|
|
|
*/
|
2011-10-13 01:30:18 +02:00
|
|
|
void apply_to_layer(layer const& lay,
|
|
|
|
Processor & p,
|
2011-04-19 04:23:11 +00:00
|
|
|
projection const& proj0,
|
2013-02-20 19:52:54 -08:00
|
|
|
double scale,
|
2011-04-19 04:23:11 +00:00
|
|
|
double scale_denom,
|
2013-02-20 19:52:54 -08:00
|
|
|
unsigned width,
|
|
|
|
unsigned height,
|
|
|
|
box2d<double> const& extent,
|
|
|
|
int buffer_size,
|
2011-09-01 00:44:27 +00:00
|
|
|
std::set<std::string>& names);
|
2010-08-10 23:46:11 +00:00
|
|
|
|
2013-02-11 17:27:06 -08:00
|
|
|
private:
|
2011-10-13 01:30:18 +02:00
|
|
|
/*!
|
2013-01-02 13:53:10 -08:00
|
|
|
* \brief renders a featureset with the given styles.
|
2011-10-13 01:30:18 +02:00
|
|
|
*/
|
2013-07-19 15:09:59 -04:00
|
|
|
void render_style(Processor & p,
|
2013-02-20 13:25:57 -08:00
|
|
|
feature_type_style const* style,
|
|
|
|
rule_cache const& rules,
|
2011-10-13 01:30:18 +02:00
|
|
|
featureset_ptr features,
|
2013-02-20 13:25:57 -08:00
|
|
|
proj_transform const& prj_trans);
|
2011-10-13 01:30:18 +02:00
|
|
|
|
2013-05-16 17:08:42 +02:00
|
|
|
/*!
|
|
|
|
* \brief prepare features for rendering asynchronously.
|
|
|
|
*/
|
|
|
|
void prepare_layer(layer_rendering_material & mat,
|
2013-09-30 13:30:16 -07:00
|
|
|
feature_style_context_map & ctx_map,
|
|
|
|
Processor & p,
|
|
|
|
double scale,
|
|
|
|
double scale_denom,
|
|
|
|
unsigned width,
|
|
|
|
unsigned height,
|
|
|
|
box2d<double> const& extent,
|
|
|
|
int buffer_size,
|
|
|
|
std::set<std::string>& names);
|
2013-05-16 17:08:42 +02:00
|
|
|
|
|
|
|
/*!
|
|
|
|
* \brief render features list queued when they are available.
|
|
|
|
*/
|
|
|
|
void render_material(layer_rendering_material & mat, Processor & p );
|
|
|
|
|
2009-12-16 20:02:06 +00:00
|
|
|
Map const& m_;
|
|
|
|
};
|
2006-02-07 14:41:41 +00:00
|
|
|
}
|
|
|
|
|
2011-10-23 16:09:47 +02:00
|
|
|
#endif // MAPNIK_FEATURE_STYLE_PROCESSOR_HPP
|