// Boost.Geometry (aka GGL, Generic Geometry Library) // Copyright (c) 2009-2012 Barend Gehrels, Amsterdam, the Netherlands. // Parts of Boost.Geometry are redesigned from Geodan's Geographic Library // (geolib/GGL), copyright (c) 1995-2010 Geodan, Amsterdam, the Netherlands. // Use, modification and distribution is subject to the Boost Software License, // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_GEOMETRY_IO_SVG_MAPPER_HPP #define BOOST_GEOMETRY_IO_SVG_MAPPER_HPP #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include // Helper geometries (all points are transformed to integer-points) #include namespace boost { namespace geometry { #ifndef DOXYGEN_NO_DETAIL namespace detail { namespace svg { typedef model::point svg_point_type; }} #endif #ifndef DOXYGEN_NO_DISPATCH namespace dispatch { template struct svg_map { BOOST_MPL_ASSERT_MSG ( false, NOT_OR_NOT_YET_IMPLEMENTED_FOR_THIS_GEOMETRY_TYPE , (Geometry) ); }; template struct svg_map { template static inline void apply(std::ostream& stream, std::string const& style, int size, Point const& point, TransformStrategy const& strategy) { detail::svg::svg_point_type ipoint; geometry::transform(point, ipoint, strategy); stream << geometry::svg(ipoint, style, size) << std::endl; } }; template struct svg_map { template static inline void apply(std::ostream& stream, std::string const& style, int size, Box const& box, TransformStrategy const& strategy) { model::box ibox; geometry::transform(box, ibox, strategy); stream << geometry::svg(ibox, style, size) << std::endl; } }; template struct svg_map_range { template static inline void apply(std::ostream& stream, std::string const& style, int size, Range1 const& range, TransformStrategy const& strategy) { Range2 irange; geometry::transform(range, irange, strategy); stream << geometry::svg(irange, style, size) << std::endl; } }; template struct svg_map { template static inline void apply(std::ostream& stream, std::string const& style, int size, Segment const& segment, TransformStrategy const& strategy) { typedef segment_view view_type; view_type range(segment); svg_map_range < view_type, model::linestring >::apply(stream, style, size, range, strategy); } }; template struct svg_map : svg_map_range > {}; template struct svg_map : svg_map_range > {}; template struct svg_map { template static inline void apply(std::ostream& stream, std::string const& style, int size, Polygon const& polygon, TransformStrategy const& strategy) { model::polygon ipoly; geometry::transform(polygon, ipoly, strategy); stream << geometry::svg(ipoly, style, size) << std::endl; } }; template struct svg_map { typedef typename single_tag_of < typename geometry::tag::type >::type stag; template static inline void apply(std::ostream& stream, std::string const& style, int size, Multi const& multi, TransformStrategy const& strategy) { for (typename boost::range_iterator::type it = boost::begin(multi); it != boost::end(multi); ++it) { svg_map < stag, typename boost::range_value::type >::apply(stream, style, size, *it, strategy); } } }; } // namespace dispatch #endif template inline void svg_map(std::ostream& stream, std::string const& style, int size, Geometry const& geometry, TransformStrategy const& strategy) { dispatch::svg_map < typename tag_cast < typename tag::type, multi_tag >::type, typename boost::remove_const::type >::apply(stream, style, size, geometry, strategy); } /*! \brief Helper class to create SVG maps \tparam Point Point type, for input geometries. \tparam SameScale Boolean flag indicating if horizontal and vertical scale should be the same. The default value is true \ingroup svg \qbk{[include reference/io/svg.qbk]} */ template class svg_mapper : boost::noncopyable { typedef typename geometry::select_most_precise < typename coordinate_type::type, double >::type calculation_type; typedef strategy::transform::map_transformer < calculation_type, geometry::dimension::type::value, geometry::dimension::type::value, true, SameScale > transformer_type; model::box m_bounding_box; boost::scoped_ptr m_matrix; std::ostream& m_stream; int m_width, m_height; std::string m_width_height; // for tag only, defaults to 2x 100% void init_matrix() { if (! m_matrix) { m_matrix.reset(new transformer_type(m_bounding_box, m_width, m_height)); m_stream << "" << std::endl << "" << std::endl << "" << std::endl; } } public : /*! \brief Constructor, initializing the SVG map. Opens and initializes the SVG. Should be called explicitly. \param stream Output stream, should be a stream already open \param width Width of the SVG map (in SVG pixels) \param height Height of the SVG map (in SVG pixels) \param width_height Optional information to increase width and/or height */ explicit svg_mapper(std::ostream& stream, int width, int height , std::string const& width_height = "width=\"100%\" height=\"100%\"") : m_stream(stream) , m_width(width) , m_height(height) , m_width_height(width_height) { assign_inverse(m_bounding_box); } /*! \brief Destructor, called automatically. Closes the SVG by streaming <\/svg> */ virtual ~svg_mapper() { m_stream << "" << std::endl; } /*! \brief Adds a geometry to the transformation matrix. After doing this, the specified geometry can be mapped fully into the SVG map \tparam Geometry \tparam_geometry \param geometry \param_geometry */ template void add(Geometry const& geometry) { if (num_points(geometry) > 0) { expand(m_bounding_box, return_envelope < model::box >(geometry)); } } /*! \brief Maps a geometry into the SVG map using the specified style \tparam Geometry \tparam_geometry \param geometry \param_geometry \param style String containing verbatim SVG style information \param size Optional size (used for SVG points) in SVG pixels. For linestrings, specify linewidth in the SVG style information */ template void map(Geometry const& geometry, std::string const& style, int size = -1) { init_matrix(); svg_map(m_stream, style, size, geometry, *m_matrix); } /*! \brief Adds a text to the SVG map \tparam TextPoint \tparam_point \param point Location of the text (in map units) \param s The text itself \param style String containing verbatim SVG style information, of the text \param offset_x Offset in SVG pixels, defaults to 0 \param offset_y Offset in SVG pixels, defaults to 0 \param lineheight Line height in SVG pixels, in case the text contains \n */ template void text(TextPoint const& point, std::string const& s, std::string const& style, int offset_x = 0, int offset_y = 0, int lineheight = 10) { init_matrix(); detail::svg::svg_point_type map_point; transform(point, map_point, *m_matrix); m_stream << "(map_point) + offset_x << "\"" << " y=\"" << get<1>(map_point) + offset_y << "\"" << ">"; if (s.find("\n") == std::string::npos) { m_stream << s; } else { // Multi-line modus std::vector splitted; boost::split(splitted, s, boost::is_any_of("\n")); for (std::vector::const_iterator it = splitted.begin(); it != splitted.end(); ++it, offset_y += lineheight) { m_stream << "(map_point) + offset_x << "\"" << " y=\"" << get<1>(map_point) + offset_y << "\"" << ">" << *it << ""; } } m_stream << "" << std::endl; } }; }} // namespace boost::geometry #endif // BOOST_GEOMETRY_IO_SVG_MAPPER_HPP