mapnik/src/map.cpp

710 lines
18 KiB
C++
Raw Normal View History

2006-03-31 12:32:02 +02:00
/*****************************************************************************
*
* This file is part of Mapnik (c++ mapping toolkit)
2005-06-14 17:06:59 +02:00
*
* Copyright (C) 2011 Artem Pavlenko
2005-06-14 17:06:59 +02:00
*
2006-03-31 12:32:02 +02: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,
2005-06-14 17:06:59 +02:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
2006-03-31 12:32:02 +02: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
2005-06-14 17:06:59 +02:00
*
2006-03-31 12:32:02 +02:00
*****************************************************************************/
2005-06-14 17:06:59 +02:00
//$Id: map.cpp 17 2005-03-08 23:58:43Z pavlenko $,
2007-10-08 19:42:41 +02:00
#include <mapnik/map.hpp>
2005-06-14 17:06:59 +02:00
#include <mapnik/datasource.hpp>
#include <mapnik/projection.hpp>
#include <mapnik/filter_featureset.hpp>
#include <mapnik/hit_test_filter.hpp>
#include <mapnik/scale_denominator.hpp>
2005-06-14 17:06:59 +02:00
// icu
#include <unicode/uversion.h>
2005-06-14 17:06:59 +02:00
namespace mapnik
{
/** Call cache_metawriters for each symbolizer.*/
struct metawriter_cache_dispatch : public boost::static_visitor<>
{
metawriter_cache_dispatch (Map const &m) : m_(m) {}
template <typename T> void operator () (T &sym) const
{
sym.cache_metawriters(m_);
}
Map const &m_;
};
2010-06-02 13:03:30 +02:00
static const char * aspect_fix_mode_strings[] = {
"GROW_BBOX",
"GROW_CANVAS",
"SHRINK_BBOX",
"SHRINK_CANVAS",
"ADJUST_BBOX_WIDTH",
"ADJUST_BBOX_HEIGHT",
"ADJUST_CANVAS_WIDTH",
"ADJUST_CANVAS_HEIGHT",
""
};
2011-04-01 09:20:41 +02:00
IMPLEMENT_ENUM( aspect_fix_mode_e, aspect_fix_mode_strings )
2010-06-02 13:03:30 +02:00
Map::Map()
: width_(400),
height_(400),
srs_("+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs"),
2010-06-02 13:03:30 +02:00
buffer_size_(0),
2011-06-01 20:53:47 +02:00
aspectFixMode_(GROW_BBOX),
base_path_("") {}
2010-06-02 13:03:30 +02:00
Map::Map(int width,int height, std::string const& srs)
: width_(width),
height_(height),
srs_(srs),
buffer_size_(0),
2011-06-01 20:53:47 +02:00
aspectFixMode_(GROW_BBOX),
base_path_("") {}
2010-06-02 13:03:30 +02:00
Map::Map(const Map& rhs)
: width_(rhs.width_),
height_(rhs.height_),
srs_(rhs.srs_),
buffer_size_(rhs.buffer_size_),
background_(rhs.background_),
background_image_(rhs.background_image_),
2010-06-02 13:03:30 +02:00
styles_(rhs.styles_),
metawriters_(rhs.metawriters_),
2011-12-12 11:16:39 +01:00
fontsets_(rhs.fontsets_),
2010-06-02 13:03:30 +02:00
layers_(rhs.layers_),
aspectFixMode_(rhs.aspectFixMode_),
current_extent_(rhs.current_extent_),
maximum_extent_(rhs.maximum_extent_),
base_path_(rhs.base_path_),
extra_attr_(rhs.extra_attr_),
extra_params_(rhs.extra_params_) {}
2010-06-02 13:03:30 +02:00
Map& Map::operator=(const Map& rhs)
{
if (this==&rhs) return *this;
width_=rhs.width_;
height_=rhs.height_;
srs_=rhs.srs_;
buffer_size_ = rhs.buffer_size_;
background_=rhs.background_;
background_image_=rhs.background_image_;
2010-06-02 13:03:30 +02:00
styles_=rhs.styles_;
metawriters_ = rhs.metawriters_;
2011-12-12 11:16:39 +01:00
fontsets_ = rhs.fontsets_;
2010-06-02 13:03:30 +02:00
layers_=rhs.layers_;
aspectFixMode_=rhs.aspectFixMode_;
maximum_extent_=rhs.maximum_extent_;
base_path_=rhs.base_path_;
extra_attr_=rhs.extra_attr_;
extra_params_=rhs.extra_params_;
2010-06-02 13:03:30 +02:00
return *this;
}
2007-08-07 14:02:24 +02:00
2010-06-02 13:03:30 +02:00
std::map<std::string,feature_type_style> const& Map::styles() const
{
return styles_;
}
2007-08-07 14:02:24 +02:00
2010-06-02 13:03:30 +02:00
std::map<std::string,feature_type_style> & Map::styles()
{
return styles_;
}
2007-08-07 14:02:24 +02:00
2010-06-02 13:03:30 +02:00
Map::style_iterator Map::begin_styles()
{
return styles_.begin();
}
2010-06-02 13:03:30 +02:00
Map::style_iterator Map::end_styles()
{
return styles_.end();
}
2010-06-02 13:03:30 +02:00
Map::const_style_iterator Map::begin_styles() const
{
return styles_.begin();
}
2010-06-02 13:03:30 +02:00
Map::const_style_iterator Map::end_styles() const
{
return styles_.end();
}
2006-05-23 19:23:20 +02:00
2010-06-02 13:03:30 +02:00
bool Map::insert_style(std::string const& name,feature_type_style const& style)
{
return styles_.insert(make_pair(name,style)).second;
}
2010-06-02 13:03:30 +02:00
void Map::remove_style(std::string const& name)
{
styles_.erase(name);
}
boost::optional<feature_type_style const&> Map::find_style(std::string const& name) const
{
std::map<std::string,feature_type_style>::const_iterator itr = styles_.find(name);
if (itr != styles_.end())
return boost::optional<feature_type_style const&>(itr->second);
else
return boost::optional<feature_type_style const&>() ;
}
bool Map::insert_metawriter(std::string const& name, metawriter_ptr const& writer)
{
return metawriters_.insert(make_pair(name, writer)).second;
}
void Map::remove_metawriter(std::string const& name)
{
metawriters_.erase(name);
}
metawriter_ptr Map::find_metawriter(std::string const& name) const
{
std::map<std::string, metawriter_ptr>::const_iterator itr = metawriters_.find(name);
if (itr != metawriters_.end())
return itr->second;
else
return metawriter_ptr();
}
std::map<std::string,metawriter_ptr> const& Map::metawriters() const
{
return metawriters_;
}
Map::const_metawriter_iterator Map::begin_metawriters() const
{
return metawriters_.begin();
}
Map::const_metawriter_iterator Map::end_metawriters() const
{
return metawriters_.end();
}
2010-06-02 13:03:30 +02:00
bool Map::insert_fontset(std::string const& name, font_set const& fontset)
{
return fontsets_.insert(make_pair(name, fontset)).second;
}
font_set const& Map::find_fontset(std::string const& name) const
{
std::map<std::string,font_set>::const_iterator itr = fontsets_.find(name);
if (itr!=fontsets_.end())
return itr->second;
static font_set default_fontset;
return default_fontset;
}
2010-06-02 13:03:30 +02:00
std::map<std::string,font_set> const& Map::fontsets() const
{
return fontsets_;
}
2010-06-02 13:03:30 +02:00
std::map<std::string,font_set> & Map::fontsets()
{
return fontsets_;
}
2010-06-25 17:23:35 +02:00
size_t Map::layer_count() const
2010-06-02 13:03:30 +02:00
{
return layers_.size();
}
2010-06-02 13:03:30 +02:00
void Map::addLayer(const layer& l)
{
layers_.push_back(l);
}
2010-06-02 13:03:30 +02:00
void Map::removeLayer(size_t index)
{
layers_.erase(layers_.begin()+index);
}
2006-10-09 11:43:09 +02:00
2010-06-02 13:03:30 +02:00
void Map::remove_all()
{
layers_.clear();
styles_.clear();
metawriters_.clear();
2010-06-02 13:03:30 +02:00
}
2006-10-09 11:43:09 +02:00
2010-06-02 13:03:30 +02:00
const layer& Map::getLayer(size_t index) const
{
return layers_[index];
}
2006-03-28 17:39:38 +02:00
2010-06-02 13:03:30 +02:00
layer& Map::getLayer(size_t index)
{
return layers_[index];
}
2006-03-28 17:39:38 +02:00
2010-06-02 13:03:30 +02:00
std::vector<layer> const& Map::layers() const
{
return layers_;
}
2010-06-02 13:03:30 +02:00
std::vector<layer> & Map::layers()
{
return layers_;
}
2010-06-25 17:23:35 +02:00
unsigned Map::width() const
2010-06-02 13:03:30 +02:00
{
return width_;
}
2005-06-14 17:06:59 +02:00
2010-06-25 17:23:35 +02:00
unsigned Map::height() const
2010-06-02 13:03:30 +02:00
{
return height_;
}
2005-11-24 16:51:29 +01:00
2010-06-25 17:23:35 +02:00
void Map::set_width(unsigned width)
2010-06-02 13:03:30 +02:00
{
if (width >= MIN_MAPSIZE && width <= MAX_MAPSIZE)
2005-11-24 16:51:29 +01:00
{
2010-06-02 13:03:30 +02:00
width_=width;
fixAspectRatio();
}
}
2005-11-24 16:51:29 +01:00
2010-06-25 17:23:35 +02:00
void Map::set_height(unsigned height)
2010-06-02 13:03:30 +02:00
{
if (height >= MIN_MAPSIZE && height <= MAX_MAPSIZE)
2005-11-24 16:51:29 +01:00
{
2010-06-02 13:03:30 +02:00
height_=height;
fixAspectRatio();
2005-11-24 16:51:29 +01:00
}
2010-06-02 13:03:30 +02:00
}
2010-06-02 13:03:30 +02:00
void Map::resize(unsigned width,unsigned height)
{
if (width >= MIN_MAPSIZE && width <= MAX_MAPSIZE &&
height >= MIN_MAPSIZE && height <= MAX_MAPSIZE)
2005-11-24 16:51:29 +01:00
{
2010-06-02 13:03:30 +02:00
width_=width;
height_=height;
fixAspectRatio();
2005-11-24 16:51:29 +01:00
}
2010-06-02 13:03:30 +02:00
}
2005-06-14 17:06:59 +02:00
2010-06-02 13:03:30 +02:00
std::string const& Map::srs() const
{
return srs_;
}
2010-06-02 13:03:30 +02:00
void Map::set_srs(std::string const& srs)
{
srs_ = srs;
}
2010-06-02 13:03:30 +02:00
void Map::set_buffer_size( int buffer_size)
{
buffer_size_ = buffer_size;
}
2010-06-02 13:03:30 +02:00
int Map::buffer_size() const
{
return buffer_size_;
}
2010-06-02 13:03:30 +02:00
boost::optional<color> const& Map::background() const
{
return background_;
}
2010-06-02 13:03:30 +02:00
void Map::set_background(const color& c)
{
background_ = c;
}
boost::optional<std::string> const& Map::background_image() const
{
return background_image_;
}
void Map::set_background_image(std::string const& image_filename)
{
background_image_ = image_filename;
}
void Map::set_maximum_extent(box2d<double> const& box)
{
maximum_extent_ = box;
}
boost::optional<box2d<double> > const& Map::maximum_extent() const
{
return maximum_extent_;
}
std::string const& Map::base_path() const
{
return base_path_;
}
void Map::set_base_path(std::string const& base)
{
base_path_ = base;
}
2010-06-02 13:03:30 +02:00
void Map::zoom(double factor)
{
coord2d center = current_extent_.center();
double w = factor * current_extent_.width();
double h = factor * current_extent_.height();
current_extent_ = box2d<double>(center.x - 0.5 * w,
2010-06-02 13:03:30 +02:00
center.y - 0.5 * h,
center.x + 0.5 * w,
center.y + 0.5 * h);
fixAspectRatio();
}
2010-06-02 13:03:30 +02:00
void Map::zoom_all()
{
if (maximum_extent_) {
zoom_to_box(*maximum_extent_);
}
else
2010-06-02 13:03:30 +02:00
{
try
{
if (!layers_.size() > 0)
return;
projection proj0(srs_);
box2d<double> ext;
bool success = false;
bool first = true;
std::vector<layer>::const_iterator itr = layers_.begin();
std::vector<layer>::const_iterator end = layers_.end();
while (itr != end)
2010-06-02 13:03:30 +02:00
{
if (itr->isActive())
2010-11-08 19:57:30 +01:00
{
std::string const& layer_srs = itr->srs();
projection proj1(layer_srs);
proj_transform prj_trans(proj0,proj1);
box2d<double> layer_ext = itr->envelope();
// TODO - consider using more robust method: http://trac.mapnik.org/ticket/751
if (prj_trans.backward(layer_ext))
{
success = true;
#ifdef MAPNIK_DEBUG
std::clog << " layer " << itr->name() << " original ext: " << itr->envelope() << "\n";
std::clog << " layer " << itr->name() << " transformed to map srs: " << layer_ext << "\n";
#endif
if (first)
{
ext = layer_ext;
first = false;
}
else
{
ext.expand_to_include(layer_ext);
}
}
2010-11-08 19:57:30 +01:00
}
++itr;
}
if (success) {
zoom_to_box(ext);
} else {
std::ostringstream s;
s << "could not zoom to combined layer extents "
<< "using zoom_all because proj4 could not "
<< "back project any layer extents into the map srs "
<< "(set map 'maximum-extent' to override layer extents)";
throw std::runtime_error(s.str());
2010-06-02 13:03:30 +02:00
}
}
catch (proj_init_error & ex)
{
std::clog << "proj_init_error:" << ex.what() << "\n";
}
2005-06-14 17:06:59 +02:00
}
2010-06-02 13:03:30 +02:00
}
2005-06-14 17:06:59 +02:00
2010-06-25 17:23:35 +02:00
void Map::zoom_to_box(const box2d<double> &box)
2010-06-02 13:03:30 +02:00
{
current_extent_=box;
2010-06-02 13:03:30 +02:00
fixAspectRatio();
}
2010-06-02 13:03:30 +02:00
void Map::fixAspectRatio()
{
double ratio1 = (double) width_ / (double) height_;
double ratio2 = current_extent_.width() / current_extent_.height();
2010-06-02 13:03:30 +02:00
if (ratio1 == ratio2) return;
switch(aspectFixMode_)
{
case ADJUST_BBOX_HEIGHT:
current_extent_.height(current_extent_.width() / ratio1);
2010-06-02 13:03:30 +02:00
break;
case ADJUST_BBOX_WIDTH:
current_extent_.width(current_extent_.height() * ratio1);
2010-06-02 13:03:30 +02:00
break;
case ADJUST_CANVAS_HEIGHT:
height_ = int (width_ / ratio2 + 0.5);
break;
case ADJUST_CANVAS_WIDTH:
width_ = int (height_ * ratio2 + 0.5);
break;
case GROW_BBOX:
if (ratio2 > ratio1)
current_extent_.height(current_extent_.width() / ratio1);
2010-06-02 13:03:30 +02:00
else
current_extent_.width(current_extent_.height() * ratio1);
2010-06-02 13:03:30 +02:00
break;
case SHRINK_BBOX:
if (ratio2 < ratio1)
current_extent_.height(current_extent_.width() / ratio1);
2010-06-02 13:03:30 +02:00
else
current_extent_.width(current_extent_.height() * ratio1);
2010-06-02 13:03:30 +02:00
break;
case GROW_CANVAS:
if (ratio2 > ratio1)
width_ = (int) (height_ * ratio2 + 0.5);
else
height_ = int (width_ / ratio2 + 0.5);
break;
case SHRINK_CANVAS:
if (ratio2 > ratio1)
height_ = int (width_ / ratio2 + 0.5);
else
width_ = (int) (height_ * ratio2 + 0.5);
break;
default:
if (ratio2 > ratio1)
current_extent_.height(current_extent_.width() / ratio1);
2010-06-02 13:03:30 +02:00
else
current_extent_.width(current_extent_.height() * ratio1);
2010-06-02 13:03:30 +02:00
break;
2005-06-14 17:06:59 +02:00
}
2010-06-02 13:03:30 +02:00
}
2010-06-25 17:23:35 +02:00
const box2d<double>& Map::get_current_extent() const
2010-06-02 13:03:30 +02:00
{
return current_extent_;
2010-06-02 13:03:30 +02:00
}
2005-06-14 17:06:59 +02:00
2010-06-02 13:03:30 +02:00
box2d<double> Map::get_buffered_extent() const
{
double extra = 2.0 * scale() * buffer_size_;
box2d<double> ext(current_extent_);
ext.width(current_extent_.width() + extra);
ext.height(current_extent_.height() + extra);
2010-06-02 13:03:30 +02:00
return ext;
}
2010-06-02 13:03:30 +02:00
void Map::pan(int x,int y)
{
int dx = x - int(0.5 * width_);
int dy = int(0.5 * height_) - y;
double s = width_/current_extent_.width();
double minx = current_extent_.minx() + dx/s;
double maxx = current_extent_.maxx() + dx/s;
double miny = current_extent_.miny() + dy/s;
double maxy = current_extent_.maxy() + dy/s;
current_extent_.init(minx,miny,maxx,maxy);
2010-06-02 13:03:30 +02:00
}
2005-06-14 17:06:59 +02:00
2010-06-02 13:03:30 +02:00
void Map::pan_and_zoom(int x,int y,double factor)
{
pan(x,y);
zoom(factor);
}
2005-06-14 17:06:59 +02:00
2010-06-02 13:03:30 +02:00
double Map::scale() const
{
if (width_>0)
return current_extent_.width()/width_;
return current_extent_.width();
2010-06-02 13:03:30 +02:00
}
2010-06-02 13:03:30 +02:00
double Map::scale_denominator() const
{
projection map_proj(srs_);
return mapnik::scale_denominator( *this, map_proj.is_geographic());
}
2010-06-02 13:03:30 +02:00
CoordTransform Map::view_transform() const
{
return CoordTransform(width_,height_,current_extent_);
2010-06-02 13:03:30 +02:00
}
2010-06-02 13:03:30 +02:00
featureset_ptr Map::query_point(unsigned index, double x, double y) const
{
if ( index< layers_.size())
{
2010-06-02 13:03:30 +02:00
mapnik::layer const& layer = layers_[index];
try
{
2010-06-02 13:03:30 +02:00
double z = 0;
mapnik::projection dest(srs_);
mapnik::projection source(layer.srs());
proj_transform prj_trans(source,dest);
prj_trans.backward(x,y,z);
double minx = current_extent_.minx();
double miny = current_extent_.miny();
double maxx = current_extent_.maxx();
double maxy = current_extent_.maxy();
2010-06-02 13:03:30 +02:00
prj_trans.backward(minx,miny,z);
prj_trans.backward(maxx,maxy,z);
double tol = (maxx - minx) / width_ * 3;
mapnik::datasource_ptr ds = layer.datasource();
if (ds)
{
#ifdef MAPNIK_DEBUG
2010-06-02 13:03:30 +02:00
std::clog << " query at point tol = " << tol << " (" << x << "," << y << ")\n";
#endif
2010-06-02 13:03:30 +02:00
featureset_ptr fs = ds->features_at_point(mapnik::coord2d(x,y));
if (fs)
return featureset_ptr(new filter_featureset<hit_test_filter>(fs,hit_test_filter(x,y,tol)));
}
2010-06-02 13:03:30 +02:00
}
catch (...)
{
#ifdef MAPNIK_DEBUG
2010-06-02 13:03:30 +02:00
std::clog << "exception caught in \"query_map_point\"\n";
#endif
}
}
2010-06-02 13:03:30 +02:00
return featureset_ptr();
}
2010-06-02 13:03:30 +02:00
featureset_ptr Map::query_map_point(unsigned index, double x, double y) const
{
if ( index< layers_.size())
{
2010-06-02 13:03:30 +02:00
mapnik::layer const& layer = layers_[index];
CoordTransform tr = view_transform();
tr.backward(&x,&y);
try
{
2010-06-02 13:03:30 +02:00
mapnik::projection dest(srs_);
mapnik::projection source(layer.srs());
proj_transform prj_trans(source,dest);
double z = 0;
prj_trans.backward(x,y,z);
double minx = current_extent_.minx();
double miny = current_extent_.miny();
double maxx = current_extent_.maxx();
double maxy = current_extent_.maxy();
2010-06-02 13:03:30 +02:00
prj_trans.backward(minx,miny,z);
prj_trans.backward(maxx,maxy,z);
double tol = (maxx - minx) / width_ * 3;
mapnik::datasource_ptr ds = layer.datasource();
if (ds)
{
#ifdef MAPNIK_DEBUG
2010-06-02 13:03:30 +02:00
std::clog << " query at point tol = " << tol << " (" << x << "," << y << ")\n";
#endif
2010-06-02 13:03:30 +02:00
featureset_ptr fs = ds->features_at_point(mapnik::coord2d(x,y));
if (fs)
return featureset_ptr(new filter_featureset<hit_test_filter>(fs,hit_test_filter(x,y,tol)));
}
2010-06-02 13:03:30 +02:00
}
catch (...)
{
#ifdef MAPNIK_DEBUG
2010-06-02 13:03:30 +02:00
std::clog << "exception caught in \"query_map_point\"\n";
#endif
}
}
2010-06-02 13:03:30 +02:00
return featureset_ptr();
}
2010-06-02 13:03:30 +02:00
Map::~Map() {}
void Map::init_metawriters()
{
metawriter_cache_dispatch d(*this);
Map::style_iterator styIter = begin_styles();
Map::style_iterator styEnd = end_styles();
for (; styIter!=styEnd; ++styIter) {
std::vector<rule>& rules = styIter->second.get_rules_nonconst();
std::vector<rule>::iterator ruleIter = rules.begin();
std::vector<rule>::iterator ruleEnd = rules.end();
for (; ruleIter!=ruleEnd; ++ruleIter) {
rule::symbolizers::iterator symIter = ruleIter->begin();
rule::symbolizers::iterator symEnd = ruleIter->end();
for (; symIter!=symEnd; ++symIter) {
boost::apply_visitor(d, *symIter);
}
}
}
}
void Map::set_metawriter_property(std::string name, std::string value)
{
#if (U_ICU_VERSION_MAJOR_NUM > 4) || (U_ICU_VERSION_MAJOR_NUM == 4 && U_ICU_VERSION_MINOR_NUM >=2)
metawriter_output_properties[name] = UnicodeString::fromUTF8(value);
#else
metawriter_output_properties[name] = UnicodeString(value.c_str());
#endif
}
std::string Map::get_metawriter_property(std::string name) const
{
std::string result;
to_utf8(metawriter_output_properties[name], result);
return result;
}
parameters const& Map::get_extra_attributes() const
{
return extra_attr_;
}
parameters& Map::get_extra_attributes()
{
return extra_attr_;
}
void Map::set_extra_attributes(parameters& attr)
{
extra_attr_ = attr;
}
parameters const& Map::get_extra_parameters() const
{
return extra_params_;
}
parameters& Map::get_extra_parameters()
{
return extra_params_;
}
void Map::set_extra_parameters(parameters& params)
{
extra_params_ = params;
}
2005-06-14 17:06:59 +02:00
}