mapnik/src/layer.cpp

230 lines
5.1 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
*
2006-03-31 12:32:02 +02:00
* Copyright (C) 2006 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: layer.cpp 17 2005-03-08 23:58:43Z pavlenko $
// stl
#include <string>
#include <iostream>
// boost
#include <boost/shared_ptr.hpp>
// mapnik
#include <mapnik/style.hpp>
#include <mapnik/datasource.hpp>
#include <mapnik/datasource_cache.hpp>
#include <mapnik/layer.hpp>
using namespace std;
using boost::shared_ptr;
2005-06-14 17:06:59 +02:00
namespace mapnik
{
Layer::Layer(std::string const& name, std::string const& srs)
: name_(name),
title_(""),
abstract_(""),
srs_(srs),
2006-05-19 18:07:13 +02:00
minZoom_(0),
maxZoom_(std::numeric_limits<double>::max()),
active_(true),
selectable_(false),
selection_style_("default_selection"),
ds_() {}
2005-06-14 17:06:59 +02:00
Layer::Layer(const Layer& rhs)
: name_(rhs.name_),
title_(rhs.title_),
abstract_(rhs.abstract_),
srs_(rhs.srs_),
minZoom_(rhs.minZoom_),
maxZoom_(rhs.maxZoom_),
active_(rhs.active_),
selectable_(rhs.selectable_),
styles_(rhs.styles_),
selection_style_(rhs.selection_style_),
ds_(rhs.ds_) {}
2005-06-14 17:06:59 +02:00
Layer& Layer::operator=(const Layer& rhs)
{
Layer tmp(rhs);
swap(tmp);
return *this;
}
bool Layer::operator==(Layer const& other) const
{
2006-05-19 18:07:13 +02:00
return (this == &other);
}
2005-06-14 17:06:59 +02:00
void Layer::swap(const Layer& rhs)
{
name_=rhs.name_;
title_=rhs.title_;
abstract_=rhs.abstract_;
2005-06-14 17:06:59 +02:00
minZoom_=rhs.minZoom_;
maxZoom_=rhs.maxZoom_;
active_=rhs.active_;
selectable_=rhs.selectable_;
styles_=rhs.styles_;
2006-05-19 18:07:13 +02:00
selection_style_=rhs.selection_style_;
ds_=rhs.ds_;
2005-06-14 17:06:59 +02:00
}
2005-06-14 17:06:59 +02:00
Layer::~Layer() {}
2006-05-19 18:07:13 +02:00
void Layer::set_name( std::string const& name)
{
name_ = name;
}
string const& Layer::name() const
2005-06-14 17:06:59 +02:00
{
return name_;
}
void Layer::set_title( std::string const& title)
{
title_ = title;
}
string const& Layer::title() const
{
return title_;
}
void Layer::set_abstract( std::string const& abstract)
{
abstract_ = abstract;
}
string const& Layer::abstract() const
{
return abstract_;
}
void Layer::set_srs(std::string const& srs)
{
srs_ = srs;
}
std::string const& Layer::srs() const
{
return srs_;
}
2005-06-14 17:06:59 +02:00
void Layer::add_style(std::string const& stylename)
{
styles_.push_back(stylename);
}
2005-06-14 17:06:59 +02:00
std::vector<std::string> const& Layer::styles() const
{
return styles_;
}
void Layer::setMinZoom(double minZoom)
{
minZoom_=minZoom;
}
void Layer::setMaxZoom(double maxZoom)
{
maxZoom_=maxZoom;
}
double Layer::getMinZoom() const
{
return minZoom_;
}
double Layer::getMaxZoom() const
{
return maxZoom_;
}
void Layer::setActive(bool active)
{
active_=active;
}
bool Layer::isActive() const
{
return active_;
}
bool Layer::isVisible(double scale) const
{
return isActive() && scale>=minZoom_ && scale<maxZoom_;
}
void Layer::setSelectable(bool selectable)
{
selectable_=selectable;
}
bool Layer::isSelectable() const
{
return selectable_;
}
datasource_p Layer::datasource() const
2005-06-14 17:06:59 +02:00
{
2006-05-19 18:07:13 +02:00
return ds_;
2005-06-14 17:06:59 +02:00
}
void Layer::set_datasource(datasource_p const& ds)
{
2006-05-19 18:07:13 +02:00
ds_ = ds;
}
2005-12-01 11:06:40 +01:00
Envelope<double> Layer::envelope() const
2005-06-14 17:06:59 +02:00
{
if (ds_) return ds_->envelope();
return Envelope<double>();
2005-06-14 17:06:59 +02:00
}
2005-06-14 17:06:59 +02:00
void Layer::selection_style(const std::string& name)
{
2006-05-19 18:07:13 +02:00
selection_style_=name;
2005-06-14 17:06:59 +02:00
}
const std::string& Layer::selection_style() const
{
2006-05-19 18:07:13 +02:00
return selection_style_;
2005-06-14 17:06:59 +02:00
}
void Layer::add_to_selection(shared_ptr<Feature>& feature) const
2005-06-14 17:06:59 +02:00
{
2006-05-19 18:07:13 +02:00
selection_.push_back(feature);
2005-06-14 17:06:59 +02:00
}
vector<shared_ptr<Feature> >& Layer::selection() const
2005-06-14 17:06:59 +02:00
{
2006-05-19 18:07:13 +02:00
return selection_;
2005-06-14 17:06:59 +02:00
}
void Layer::clear_selection() const
{
2006-05-19 18:07:13 +02:00
selection_.clear();
2005-06-14 17:06:59 +02:00
}
}