2006-03-31 12:32:02 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
2006-02-01 00:09:52 +01:00
|
|
|
*
|
2006-03-31 12:32:02 +02:00
|
|
|
* Copyright (C) 2006 Artem Pavlenko, Jean-Francois Doyon
|
2006-02-01 00:09:52 +01: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,
|
2006-02-01 00:09:52 +01: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.
|
2006-02-01 00:09:52 +01:00
|
|
|
*
|
2006-03-31 12:32:02 +02:00
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
2006-02-01 00:09:52 +01:00
|
|
|
//$Id: mapnik_map.cc 17 2005-03-08 23:58:43Z pavlenko $
|
|
|
|
|
|
|
|
|
|
|
|
#include <boost/python.hpp>
|
|
|
|
#include <boost/python/detail/api_placeholder.hpp>
|
|
|
|
#include <boost/python/suite/indexing/vector_indexing_suite.hpp>
|
2006-09-11 11:48:27 +02:00
|
|
|
|
2006-10-04 13:22:18 +02:00
|
|
|
#include <mapnik/layer.hpp>
|
|
|
|
#include <mapnik/map.hpp>
|
2006-02-01 00:09:52 +01:00
|
|
|
|
|
|
|
using mapnik::Color;
|
|
|
|
using mapnik::coord;
|
|
|
|
using mapnik::Envelope;
|
|
|
|
using mapnik::Layer;
|
|
|
|
using mapnik::Map;
|
|
|
|
|
|
|
|
struct map_pickle_suite : boost::python::pickle_suite
|
|
|
|
{
|
|
|
|
static boost::python::tuple
|
|
|
|
getinitargs(const Map& m)
|
|
|
|
{
|
2006-10-16 15:44:52 +02:00
|
|
|
return boost::python::make_tuple(m.getWidth(),m.getHeight(),m.srs());
|
2006-02-01 00:09:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static boost::python::tuple
|
|
|
|
getstate(const Map& m)
|
|
|
|
{
|
|
|
|
boost::python::list l;
|
|
|
|
for (unsigned i=0;i<m.layerCount();++i)
|
|
|
|
{
|
|
|
|
l.append(m.getLayer(i));
|
|
|
|
}
|
|
|
|
return boost::python::make_tuple(m.getCurrentExtent(),m.getBackground(),l);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
setstate (Map& m, boost::python::tuple state)
|
|
|
|
{
|
|
|
|
using namespace boost::python;
|
|
|
|
if (len(state) != 3)
|
|
|
|
{
|
|
|
|
PyErr_SetObject(PyExc_ValueError,
|
2006-08-23 22:17:16 +02:00
|
|
|
("expected 3-item tuple in call to __setstate__; got %s"
|
|
|
|
% state).ptr()
|
|
|
|
);
|
2006-02-01 00:09:52 +01:00
|
|
|
throw_error_already_set();
|
|
|
|
}
|
|
|
|
Envelope<double> ext = extract<Envelope<double> >(state[0]);
|
|
|
|
Color bg = extract<Color>(state[1]);
|
|
|
|
m.zoomToBox(ext);
|
|
|
|
m.setBackground(bg);
|
|
|
|
boost::python::list l=extract<boost::python::list>(state[2]);
|
|
|
|
for (int i=0;i<len(l);++i)
|
|
|
|
{
|
|
|
|
m.addLayer(extract<Layer>(l[i]));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
1. hit_test implementation for geometry objects:
bool hit_test(double x, double y, double tol);
2. added image_view(unsigned x, unsigned y, unsigned width, unsigned height)
allowing to select region from image data e.g (in Python):
im = Image(2048,2048)
view = im.view(0,0,256,256)
save_to_file(filename,type, view)
3. changed envelope method to return vy value in datasource classes
4. features_at_point impl for shape and postgis plug-ins
2006-11-25 12:02:59 +01:00
|
|
|
std::vector<Layer>& (Map::*layers_nonconst)() = &Map::layers;
|
|
|
|
std::vector<Layer> const& (Map::*layers_const)() const = &Map::layers;
|
|
|
|
|
2006-02-01 00:09:52 +01:00
|
|
|
void export_map()
|
|
|
|
{
|
|
|
|
using namespace boost::python;
|
2006-02-20 02:34:02 +01:00
|
|
|
class_<std::vector<Layer> >("Layers")
|
2006-02-01 00:09:52 +01:00
|
|
|
.def(vector_indexing_suite<std::vector<Layer> >())
|
|
|
|
;
|
2006-08-23 22:17:16 +02:00
|
|
|
|
2006-10-16 15:44:52 +02:00
|
|
|
class_<Map>("Map","The map object.",init<int,int,optional<std::string const&> >())
|
2006-12-05 17:32:53 +01:00
|
|
|
.add_property("width",&Map::getWidth, &Map::setWidth, "The width of the map.")
|
|
|
|
.add_property("height",&Map::getHeight, &Map::setHeight, "The height of the map.")
|
2006-10-16 15:44:52 +02:00
|
|
|
.add_property("srs",make_function(&Map::srs,return_value_policy<copy_const_reference>()),
|
|
|
|
&Map::set_srs,"Spatial reference in proj4 format e.g. \"+proj=latlong +datum=WGS84\"")
|
2006-08-23 22:17:16 +02:00
|
|
|
.add_property("background",make_function
|
|
|
|
(&Map::getBackground,return_value_policy<copy_const_reference>()),
|
|
|
|
&Map::setBackground, "The background color of the map.")
|
|
|
|
.def("envelope",make_function(&Map::getCurrentExtent,
|
|
|
|
return_value_policy<copy_const_reference>()),
|
|
|
|
"The current extent of the map")
|
2006-02-01 00:09:52 +01:00
|
|
|
.def("scale", &Map::scale)
|
2006-08-23 22:35:01 +02:00
|
|
|
.def("zoom_all",&Map::zoom_all,
|
|
|
|
"Set the geographical extent of the map "
|
|
|
|
"to the combined extents of all active layers")
|
2006-03-28 03:01:00 +02:00
|
|
|
.def("zoom_to_box",&Map::zoomToBox, "Set the geographical extent of the map.")
|
2006-02-01 00:09:52 +01:00
|
|
|
.def("pan",&Map::pan)
|
|
|
|
.def("zoom",&Map::zoom)
|
2006-10-16 15:44:52 +02:00
|
|
|
.def("zoom_all",&Map::zoom_all)
|
2006-02-01 00:09:52 +01:00
|
|
|
.def("pan_and_zoom",&Map::pan_and_zoom)
|
2006-08-23 22:17:16 +02:00
|
|
|
.def("append_style",&Map::insert_style)
|
|
|
|
.def("remove_style",&Map::remove_style)
|
2006-12-06 22:21:17 +01:00
|
|
|
.def("query_point",&Map::query_point)
|
2006-12-06 21:26:59 +01:00
|
|
|
.def("query_map_point",&Map::query_map_point)
|
2006-08-23 22:17:16 +02:00
|
|
|
.add_property("layers",make_function
|
1. hit_test implementation for geometry objects:
bool hit_test(double x, double y, double tol);
2. added image_view(unsigned x, unsigned y, unsigned width, unsigned height)
allowing to select region from image data e.g (in Python):
im = Image(2048,2048)
view = im.view(0,0,256,256)
save_to_file(filename,type, view)
3. changed envelope method to return vy value in datasource classes
4. features_at_point impl for shape and postgis plug-ins
2006-11-25 12:02:59 +01:00
|
|
|
(layers_nonconst,return_value_policy<reference_existing_object>()),
|
2006-08-23 22:17:16 +02:00
|
|
|
"Get the list of layers in this map.")
|
2006-10-27 19:29:39 +02:00
|
|
|
.def("find_style",&Map::find_style,return_value_policy<copy_const_reference>())
|
2006-02-01 00:09:52 +01:00
|
|
|
.def_pickle(map_pickle_suite())
|
|
|
|
;
|
|
|
|
}
|