2010-11-10 10:46:09 +00:00
|
|
|
/*****************************************************************************
|
2011-11-14 03:37:50 +00:00
|
|
|
*
|
2010-11-10 10:46:09 +00:00
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
*
|
2011-10-23 19:19:56 +00:00
|
|
|
* Copyright (C) 2011 Artem Pavlenko
|
2010-11-10 10:46:09 +00: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,
|
|
|
|
* 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 GEOS_DATASOURCE_HPP
|
|
|
|
#define GEOS_DATASOURCE_HPP
|
|
|
|
|
|
|
|
// mapnik
|
|
|
|
#include <mapnik/datasource.hpp>
|
|
|
|
#include <mapnik/feature.hpp>
|
|
|
|
#include <mapnik/feature_layer_desc.hpp>
|
|
|
|
|
|
|
|
// boost
|
|
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
|
2010-11-12 21:18:53 +00:00
|
|
|
#include "geos_feature_ptr.hpp"
|
|
|
|
|
2011-11-14 03:37:50 +00:00
|
|
|
class geos_datasource : public mapnik::datasource
|
2010-11-10 10:46:09 +00:00
|
|
|
{
|
2011-10-23 19:19:56 +00:00
|
|
|
public:
|
2012-03-05 15:29:58 +00:00
|
|
|
geos_datasource(mapnik::parameters const& params);
|
2011-10-23 19:19:56 +00:00
|
|
|
virtual ~geos_datasource ();
|
2012-01-17 06:09:46 +00:00
|
|
|
mapnik::datasource::datasource_t type() const;
|
2011-10-23 19:19:56 +00:00
|
|
|
static std::string name();
|
|
|
|
mapnik::featureset_ptr features(mapnik::query const& q) const;
|
|
|
|
mapnik::featureset_ptr features_at_point(mapnik::coord2d const& pt) const;
|
|
|
|
mapnik::box2d<double> envelope() const;
|
2012-01-17 06:09:46 +00:00
|
|
|
boost::optional<mapnik::datasource::geometry_t> get_geometry_type() const;
|
2011-10-23 19:19:56 +00:00
|
|
|
mapnik::layer_descriptor get_descriptor() const;
|
2012-03-05 15:29:58 +00:00
|
|
|
|
2010-11-10 10:46:09 +00:00
|
|
|
|
2011-10-23 19:19:56 +00:00
|
|
|
private:
|
2012-03-05 15:29:58 +00:00
|
|
|
void init(mapnik::parameters const& params);
|
|
|
|
mapnik::box2d<double> extent_;
|
|
|
|
bool extent_initialized_;
|
2012-01-17 06:09:46 +00:00
|
|
|
mapnik::datasource::datasource_t type_;
|
2012-03-05 15:29:58 +00:00
|
|
|
mapnik::layer_descriptor desc_;
|
2011-10-23 19:19:56 +00:00
|
|
|
mutable geos_feature_ptr geometry_;
|
2012-03-05 15:29:58 +00:00
|
|
|
std::string geometry_data_;
|
|
|
|
std::string geometry_data_name_;
|
|
|
|
int geometry_id_;
|
2011-10-23 19:19:56 +00:00
|
|
|
std::string geometry_string_;
|
|
|
|
};
|
2010-11-10 10:46:09 +00:00
|
|
|
|
|
|
|
#endif // GEOS_DATASOURCE_HPP
|