126 lines
4.3 KiB
C++
126 lines
4.3 KiB
C++
/*****************************************************************************
|
|
*
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
*
|
|
* Copyright (C) 2011 Artem Pavlenko
|
|
*
|
|
* 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
|
|
*
|
|
*****************************************************************************/
|
|
|
|
#ifndef MAPNIK_METAWRITER_HPP
|
|
#define MAPNIK_METAWRITER_HPP
|
|
|
|
// mapnik
|
|
#include <mapnik/feature.hpp>
|
|
#include <mapnik/ctrans.hpp>
|
|
#include <mapnik/projection.hpp>
|
|
#include <mapnik/metawriter/properties.hpp>
|
|
|
|
// boost
|
|
#include <boost/utility.hpp>
|
|
#include <boost/shared_ptr.hpp>
|
|
#include <boost/concept_check.hpp>
|
|
|
|
// stl
|
|
#include <set>
|
|
#include <string>
|
|
|
|
|
|
namespace mapnik {
|
|
|
|
class text_placement_info;
|
|
|
|
/** Abstract baseclass for all metawriter classes. */
|
|
class metawriter
|
|
{
|
|
public:
|
|
typedef coord_transform<CoordTransform,geometry_type> path_type;
|
|
metawriter(metawriter_properties dflt_properties) :
|
|
dflt_properties_(dflt_properties),
|
|
width_(0),
|
|
height_(0) {}
|
|
virtual ~metawriter() {}
|
|
/** Output a rectangular area.
|
|
* \param box Area (in pixel coordinates)
|
|
* \param feature The feature being processed
|
|
* \param prj_trans Projection transformation
|
|
* \param t Coordinate transformation
|
|
* \param properties List of properties to output
|
|
*/
|
|
virtual void add_box(box2d<double> const& box, Feature const& feature,
|
|
CoordTransform const& t,
|
|
metawriter_properties const& properties)=0;
|
|
#if 0
|
|
virtual void add_text(boost::ptr_vector<text_path> const& placements,
|
|
box2d<double> const& extents,
|
|
Feature const& feature,
|
|
CoordTransform const& t,
|
|
metawriter_properties const& properties)=0;
|
|
#else
|
|
#warning MetaWriter: add_text disabled!
|
|
#endif
|
|
virtual void add_polygon(path_type & path,
|
|
Feature const& feature,
|
|
CoordTransform const& t,
|
|
metawriter_properties const& properties)=0;
|
|
virtual void add_line(path_type & path,
|
|
Feature const& feature,
|
|
CoordTransform const& t,
|
|
metawriter_properties const& properties)=0;
|
|
|
|
/** Start processing.
|
|
* Write file header, init database connection, ...
|
|
*
|
|
* \param properties metawriter_property_map object with userdefined values.
|
|
* Useful for setting filename etc.
|
|
*/
|
|
virtual void start(metawriter_property_map const& properties)
|
|
{
|
|
boost::ignore_unused_variable_warning(properties);
|
|
}
|
|
|
|
/** Stop processing.
|
|
* Write file footer, close database connection, ...
|
|
*/
|
|
virtual void stop() {}
|
|
/** Set output size (pixels).
|
|
* All features that are completely outside this size are discarded.
|
|
*/
|
|
void set_size(int width, int height) { width_ = width; height_ = height; }
|
|
/** Set Map object's srs. */
|
|
virtual void set_map_srs(projection const& proj)
|
|
{
|
|
boost::ignore_unused_variable_warning(proj);
|
|
}
|
|
|
|
/** Return the list of default properties. */
|
|
metawriter_properties const& get_default_properties() const { return dflt_properties_;}
|
|
protected:
|
|
metawriter_properties dflt_properties_;
|
|
/** Output width (pixels). */
|
|
int width_;
|
|
/** Output height (pixels). */
|
|
int height_;
|
|
};
|
|
|
|
/** Shared pointer to metawriter object. */
|
|
typedef boost::shared_ptr<metawriter> metawriter_ptr;
|
|
/** Metawriter object + properties. */
|
|
typedef std::pair<metawriter_ptr, metawriter_properties> metawriter_with_properties;
|
|
|
|
}
|
|
|
|
#endif // MAPNIK_METAWRITER_HPP
|