Changeset 704 for trunk/include/mapnik/map.hpp
- Timestamp:
- 06/29/08 06:58:48 (6 months ago)
- Files:
-
- 1 modified
-
trunk/include/mapnik/map.hpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/mapnik/map.hpp
r702 r704 45 45 boost::optional<Color> background_; 46 46 std::map<std::string,feature_type_style> styles_; 47 std::map<std::string,FontSet> fontsets_; 47 48 std::vector<Layer> layers_; 48 49 Envelope<double> currentExtent_; … … 129 130 */ 130 131 feature_type_style const& find_style(std::string const& name) const; 132 133 /*! \brief Insert a fontset into the map. 134 * @param name The name of the fontset. 135 * @param style The fontset to insert. 136 * @return true If success. 137 * @return false If failure. 138 */ 139 bool insert_fontset(std::string const& name, FontSet const& fontset); 140 141 /*! \brief Find a fontset. 142 * @param name The name of the fontset. 143 * @return The fontset if found. If not found return the default map fontset. 144 */ 145 FontSet const& find_fontset(std::string const& name) const; 131 146 132 147 /*! \brief Get number of all layers.
