2006-03-31 12:32:02 +02:00
|
|
|
/*****************************************************************************
|
2011-11-14 04:54:32 +01:00
|
|
|
*
|
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
|
|
|
*
|
2014-11-20 15:25:50 +01:00
|
|
|
* Copyright (C) 2014 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
|
|
|
|
2014-08-12 14:40:45 +02:00
|
|
|
#include <mapnik/config.hpp>
|
2014-08-12 19:44:11 +02:00
|
|
|
|
2009-03-21 12:22:10 +01:00
|
|
|
// boost
|
2014-10-22 01:37:27 +02:00
|
|
|
#include "boost_std_shared_shim.hpp"
|
|
|
|
#pragma GCC diagnostic push
|
|
|
|
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
|
|
|
#pragma GCC diagnostic ignored "-Wunused-local-typedef"
|
|
|
|
#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
|
|
|
|
|
2006-02-01 00:09:52 +01:00
|
|
|
#include <boost/python.hpp>
|
2014-10-22 01:37:27 +02:00
|
|
|
#include <boost/noncopyable.hpp>
|
2006-02-01 00:09:52 +01:00
|
|
|
#include <boost/python/suite/indexing/vector_indexing_suite.hpp>
|
2013-02-04 19:00:08 +01:00
|
|
|
#include <boost/python/iterator.hpp>
|
|
|
|
#include <boost/iterator/transform_iterator.hpp>
|
2014-10-22 01:37:27 +02:00
|
|
|
#pragma GCC diagnostic pop
|
2006-09-11 11:48:27 +02:00
|
|
|
|
2009-03-21 12:22:10 +01:00
|
|
|
// mapnik
|
2013-01-04 03:06:07 +01:00
|
|
|
#include <mapnik/rule.hpp>
|
2006-10-04 13:22:18 +02:00
|
|
|
#include <mapnik/layer.hpp>
|
|
|
|
#include <mapnik/map.hpp>
|
2012-08-15 19:24:56 +02:00
|
|
|
#include <mapnik/projection.hpp>
|
2014-08-28 11:29:04 +02:00
|
|
|
#include <mapnik/view_transform.hpp>
|
2009-02-15 20:53:48 +01:00
|
|
|
#include <mapnik/feature_type_style.hpp>
|
2009-03-21 12:22:10 +01:00
|
|
|
#include "mapnik_enumeration.hpp"
|
2007-08-01 11:59:23 +02:00
|
|
|
|
2009-01-14 13:10:24 +01:00
|
|
|
using mapnik::color;
|
2006-02-01 00:09:52 +01:00
|
|
|
using mapnik::coord;
|
2009-12-16 21:02:06 +01:00
|
|
|
using mapnik::box2d;
|
|
|
|
using mapnik::layer;
|
2006-02-01 00:09:52 +01:00
|
|
|
using mapnik::Map;
|
|
|
|
|
2009-12-16 21:02:06 +01:00
|
|
|
std::vector<layer>& (Map::*layers_nonconst)() = &Map::layers;
|
|
|
|
std::vector<layer> const& (Map::*layers_const)() const = &Map::layers;
|
2011-12-03 03:00:20 +01:00
|
|
|
mapnik::parameters& (Map::*params_nonconst)() = &Map::get_extra_parameters;
|
2008-11-18 22:15:46 +01:00
|
|
|
|
2014-04-29 02:10:00 +02:00
|
|
|
void insert_style(mapnik::Map & m, std::string const& name, mapnik::feature_type_style const& style)
|
|
|
|
{
|
|
|
|
m.insert_style(name,style);
|
|
|
|
}
|
|
|
|
|
|
|
|
void insert_fontset(mapnik::Map & m, std::string const& name, mapnik::font_set const& fontset)
|
|
|
|
{
|
|
|
|
m.insert_fontset(name,fontset);
|
|
|
|
}
|
|
|
|
|
2011-12-20 21:34:27 +01:00
|
|
|
mapnik::feature_type_style find_style(mapnik::Map const& m, std::string const& name)
|
2008-11-18 22:15:46 +01:00
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
boost::optional<mapnik::feature_type_style const&> style = m.find_style(name);
|
|
|
|
if (!style)
|
|
|
|
{
|
|
|
|
PyErr_SetString(PyExc_KeyError, "Invalid style name");
|
|
|
|
boost::python::throw_error_already_set();
|
|
|
|
}
|
|
|
|
return *style;
|
2008-11-18 22:15:46 +01:00
|
|
|
}
|
|
|
|
|
2011-12-20 21:34:27 +01:00
|
|
|
mapnik::font_set find_fontset(mapnik::Map const& m, std::string const& name)
|
|
|
|
{
|
|
|
|
boost::optional<mapnik::font_set const&> fontset = m.find_fontset(name);
|
|
|
|
if (!fontset)
|
|
|
|
{
|
|
|
|
PyErr_SetString(PyExc_KeyError, "Invalid font_set name");
|
|
|
|
boost::python::throw_error_already_set();
|
|
|
|
}
|
|
|
|
return *fontset;
|
|
|
|
}
|
|
|
|
|
2010-08-27 18:16:16 +02:00
|
|
|
// TODO - we likely should allow indexing by negative number from python
|
|
|
|
// for now, protect against negative values and kindly throw
|
|
|
|
mapnik::featureset_ptr query_point(mapnik::Map const& m, int index, double x, double y)
|
|
|
|
{
|
|
|
|
if (index < 0){
|
|
|
|
PyErr_SetString(PyExc_IndexError, "Please provide a layer index >= 0");
|
2011-11-14 04:54:32 +01:00
|
|
|
boost::python::throw_error_already_set();
|
2010-08-27 18:16:16 +02:00
|
|
|
}
|
|
|
|
unsigned idx = index;
|
|
|
|
return m.query_point(idx, x, y);
|
|
|
|
}
|
|
|
|
|
|
|
|
mapnik::featureset_ptr query_map_point(mapnik::Map const& m, int index, double x, double y)
|
|
|
|
{
|
|
|
|
if (index < 0){
|
|
|
|
PyErr_SetString(PyExc_IndexError, "Please provide a layer index >= 0");
|
2011-11-14 04:54:32 +01:00
|
|
|
boost::python::throw_error_already_set();
|
2010-08-27 18:16:16 +02:00
|
|
|
}
|
|
|
|
unsigned idx = index;
|
|
|
|
return m.query_map_point(idx, x, y);
|
|
|
|
}
|
|
|
|
|
2012-04-04 21:07:15 +02:00
|
|
|
void set_maximum_extent(mapnik::Map & m, boost::optional<mapnik::box2d<double> > const& box)
|
|
|
|
{
|
|
|
|
if (box)
|
|
|
|
{
|
|
|
|
m.set_maximum_extent(*box);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-08-01 16:44:36 +02:00
|
|
|
m.reset_maximum_extent();
|
2012-04-04 21:07:15 +02:00
|
|
|
}
|
|
|
|
}
|
2011-12-03 03:00:20 +01:00
|
|
|
|
2013-02-04 19:00:08 +01:00
|
|
|
struct extract_style
|
|
|
|
{
|
2014-07-07 19:23:15 +02:00
|
|
|
using result_type = boost::python::tuple;
|
2013-02-04 19:00:08 +01:00
|
|
|
result_type operator() (std::map<std::string, mapnik::feature_type_style>::value_type const& val) const
|
|
|
|
{
|
2013-02-22 22:39:14 +01:00
|
|
|
return boost::python::make_tuple(val.first,val.second);
|
2013-02-04 19:00:08 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-07-07 19:23:15 +02:00
|
|
|
using style_extract_iterator = boost::transform_iterator<extract_style, Map::const_style_iterator>;
|
|
|
|
using style_range = std::pair<style_extract_iterator,style_extract_iterator>;
|
2013-02-04 19:00:08 +01:00
|
|
|
|
|
|
|
style_range _styles_ (mapnik::Map const& m)
|
|
|
|
{
|
|
|
|
return style_range(
|
|
|
|
boost::make_transform_iterator<extract_style>(m.begin_styles(), extract_style()),
|
|
|
|
boost::make_transform_iterator<extract_style>(m.end_styles(), extract_style()));
|
|
|
|
}
|
|
|
|
|
2011-11-14 04:54:32 +01:00
|
|
|
void export_map()
|
2006-02-01 00:09:52 +01:00
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
using namespace boost::python;
|
2011-11-14 04:54:32 +01:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
// aspect ratio fix modes
|
|
|
|
mapnik::enumeration_<mapnik::aspect_fix_mode_e>("aspect_fix_mode")
|
|
|
|
.value("GROW_BBOX", mapnik::Map::GROW_BBOX)
|
|
|
|
.value("GROW_CANVAS",mapnik::Map::GROW_CANVAS)
|
|
|
|
.value("SHRINK_BBOX",mapnik::Map::SHRINK_BBOX)
|
|
|
|
.value("SHRINK_CANVAS",mapnik::Map::SHRINK_CANVAS)
|
|
|
|
.value("ADJUST_BBOX_WIDTH",mapnik::Map::ADJUST_BBOX_WIDTH)
|
|
|
|
.value("ADJUST_BBOX_HEIGHT",mapnik::Map::ADJUST_BBOX_HEIGHT)
|
|
|
|
.value("ADJUST_CANVAS_WIDTH",mapnik::Map::ADJUST_CANVAS_WIDTH)
|
|
|
|
.value("ADJUST_CANVAS_HEIGHT", mapnik::Map::ADJUST_CANVAS_HEIGHT)
|
2014-08-15 05:25:53 +02:00
|
|
|
.value("RESPECT", mapnik::Map::RESPECT)
|
2010-06-02 13:03:30 +02:00
|
|
|
;
|
2011-11-14 04:54:32 +01:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
class_<std::vector<layer> >("Layers")
|
|
|
|
.def(vector_indexing_suite<std::vector<layer> >())
|
|
|
|
;
|
2011-11-14 04:54:32 +01:00
|
|
|
|
2013-02-04 19:00:08 +01:00
|
|
|
class_<style_range>("StyleRange")
|
|
|
|
.def("__iter__",
|
2013-03-19 22:09:36 +01:00
|
|
|
boost::python::range(&style_range::first, &style_range::second))
|
2013-02-04 19:00:08 +01:00
|
|
|
;
|
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
class_<Map>("Map","The map object.",init<int,int,optional<std::string const&> >(
|
|
|
|
( arg("width"),arg("height"),arg("srs") ),
|
|
|
|
"Create a Map with a width and height as integers and, optionally,\n"
|
|
|
|
"an srs string either with a Proj.4 epsg code ('+init=epsg:<code>')\n"
|
|
|
|
"or with a Proj.4 literal ('+proj=<literal>').\n"
|
2010-08-10 20:18:31 +02:00
|
|
|
"If no srs is specified the map will default to '+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs'\n"
|
2010-06-02 13:03:30 +02:00
|
|
|
"\n"
|
|
|
|
"Usage:\n"
|
|
|
|
">>> from mapnik import Map\n"
|
|
|
|
">>> m = Map(600,400)\n"
|
|
|
|
">>> m\n"
|
|
|
|
"<mapnik._mapnik.Map object at 0x6a240>\n"
|
|
|
|
">>> m.srs\n"
|
2010-08-10 20:18:31 +02:00
|
|
|
"'+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs'\n"
|
2010-06-02 13:03:30 +02:00
|
|
|
))
|
2011-11-14 04:54:32 +01:00
|
|
|
|
2014-04-29 02:10:00 +02:00
|
|
|
.def("append_style",insert_style,
|
2010-08-27 18:16:16 +02:00
|
|
|
(arg("style_name"),arg("style_object")),
|
2010-06-02 13:03:30 +02:00
|
|
|
"Insert a Mapnik Style onto the map by appending it.\n"
|
|
|
|
"\n"
|
|
|
|
"Usage:\n"
|
|
|
|
">>> sty\n"
|
|
|
|
"<mapnik._mapnik.Style object at 0x6a330>\n"
|
|
|
|
">>> m.append_style('Style Name', sty)\n"
|
|
|
|
"True # style object added to map by name\n"
|
|
|
|
">>> m.append_style('Style Name', sty)\n"
|
|
|
|
"False # you can only append styles with unique names\n"
|
|
|
|
)
|
2009-01-14 05:52:04 +01:00
|
|
|
|
2014-04-29 02:10:00 +02:00
|
|
|
.def("append_fontset",insert_fontset,
|
2011-12-20 21:34:27 +01:00
|
|
|
(arg("fontset")),
|
|
|
|
"Add a FontSet to the map."
|
|
|
|
)
|
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
.def("buffered_envelope",
|
|
|
|
&Map::get_buffered_extent,
|
2010-08-27 18:16:16 +02:00
|
|
|
"Get the Box2d() of the Map given\n"
|
2010-06-02 13:03:30 +02:00
|
|
|
"the Map.buffer_size.\n"
|
|
|
|
"\n"
|
|
|
|
"Usage:\n"
|
|
|
|
">>> m = Map(600,400)\n"
|
|
|
|
">>> m.envelope()\n"
|
2010-08-27 18:16:16 +02:00
|
|
|
"Box2d(-1.0,-1.0,0.0,0.0)\n"
|
2010-06-02 13:03:30 +02:00
|
|
|
">>> m.buffered_envelope()\n"
|
2010-08-27 18:16:16 +02:00
|
|
|
"Box2d(-1.0,-1.0,0.0,0.0)\n"
|
2010-06-02 13:03:30 +02:00
|
|
|
">>> m.buffer_size = 1\n"
|
|
|
|
">>> m.buffered_envelope()\n"
|
2010-08-27 18:16:16 +02:00
|
|
|
"Box2d(-1.02222222222,-1.02222222222,0.0222222222222,0.0222222222222)\n"
|
2010-06-02 13:03:30 +02:00
|
|
|
)
|
2009-03-30 06:17:03 +02:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
.def("envelope",
|
2010-06-25 17:23:35 +02:00
|
|
|
make_function(&Map::get_current_extent,
|
2010-06-02 13:03:30 +02:00
|
|
|
return_value_policy<copy_const_reference>()),
|
2010-08-27 18:16:16 +02:00
|
|
|
"Return the Map Box2d object\n"
|
2010-06-02 13:03:30 +02:00
|
|
|
"and print the string representation\n"
|
|
|
|
"of the current extent of the map.\n"
|
|
|
|
"\n"
|
|
|
|
"Usage:\n"
|
|
|
|
">>> m.envelope()\n"
|
2010-08-27 18:16:16 +02:00
|
|
|
"Box2d(-0.185833333333,-0.96,0.189166666667,-0.71)\n"
|
2010-06-02 13:03:30 +02:00
|
|
|
">>> dir(m.envelope())\n"
|
|
|
|
"...'center', 'contains', 'expand_to_include', 'forward',\n"
|
|
|
|
"...'height', 'intersect', 'intersects', 'inverse', 'maxx',\n"
|
|
|
|
"...'maxy', 'minx', 'miny', 'width'\n"
|
|
|
|
)
|
2009-02-03 00:39:20 +01:00
|
|
|
|
2011-12-20 21:34:27 +01:00
|
|
|
.def("find_fontset",find_fontset,
|
|
|
|
(arg("name")),
|
|
|
|
"Find a fontset by name."
|
|
|
|
)
|
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
.def("find_style",
|
2010-08-27 18:16:16 +02:00
|
|
|
find_style,
|
2011-12-20 21:34:27 +01:00
|
|
|
(arg("name")),
|
2010-06-02 13:03:30 +02:00
|
|
|
"Query the Map for a style by name and return\n"
|
|
|
|
"a style object if found or raise KeyError\n"
|
|
|
|
"style if not found.\n"
|
|
|
|
"\n"
|
|
|
|
"Usage:\n"
|
|
|
|
">>> m.find_style('Style Name')\n"
|
|
|
|
"<mapnik._mapnik.Style object at 0x654f0>\n"
|
|
|
|
)
|
2010-11-10 19:40:23 +01:00
|
|
|
|
2013-02-04 19:00:08 +01:00
|
|
|
.add_property("styles", _styles_)
|
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
.def("pan",&Map::pan,
|
2010-08-27 18:16:16 +02:00
|
|
|
(arg("x"),arg("y")),
|
2010-06-02 13:03:30 +02:00
|
|
|
"Set the Map center at a given x,y location\n"
|
|
|
|
"as integers in the coordinates of the pixmap or map surface.\n"
|
|
|
|
"\n"
|
|
|
|
"Usage:\n"
|
|
|
|
">>> m = Map(600,400)\n"
|
|
|
|
">>> m.envelope().center()\n"
|
|
|
|
"Coord(-0.5,-0.5) # default Map center\n"
|
|
|
|
">>> m.pan(-1,-1)\n"
|
|
|
|
">>> m.envelope().center()\n"
|
|
|
|
"Coord(0.00166666666667,-0.835)\n"
|
|
|
|
)
|
2011-11-14 04:54:32 +01:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
.def("pan_and_zoom",&Map::pan_and_zoom,
|
2010-08-27 18:16:16 +02:00
|
|
|
(arg("x"),arg("y"),arg("factor")),
|
2010-06-02 13:03:30 +02:00
|
|
|
"Set the Map center at a given x,y location\n"
|
|
|
|
"and zoom factor as a float.\n"
|
|
|
|
"\n"
|
|
|
|
"Usage:\n"
|
|
|
|
">>> m = Map(600,400)\n"
|
|
|
|
">>> m.envelope().center()\n"
|
|
|
|
"Coord(-0.5,-0.5) # default Map center\n"
|
|
|
|
">>> m.scale()\n"
|
|
|
|
"-0.0016666666666666668\n"
|
|
|
|
">>> m.pan_and_zoom(-1,-1,0.25)\n"
|
|
|
|
">>> m.scale()\n"
|
|
|
|
"0.00062500000000000001\n"
|
|
|
|
)
|
2011-11-14 04:54:32 +01:00
|
|
|
|
2010-08-27 18:16:16 +02:00
|
|
|
.def("query_map_point",query_map_point,
|
|
|
|
(arg("layer_idx"),arg("pixel_x"),arg("pixel_y")),
|
2010-06-02 13:03:30 +02:00
|
|
|
"Query a Map Layer (by layer index) for features \n"
|
2010-08-27 18:16:16 +02:00
|
|
|
"intersecting the given x,y location in the pixel\n"
|
|
|
|
"coordinates of the rendered map image.\n"
|
|
|
|
"Layer index starts at 0 (first layer in map).\n"
|
2010-06-02 13:03:30 +02:00
|
|
|
"Will return a Mapnik Featureset if successful\n"
|
|
|
|
"otherwise will return None.\n"
|
|
|
|
"\n"
|
|
|
|
"Usage:\n"
|
|
|
|
">>> featureset = m.query_map_point(0,200,200)\n"
|
|
|
|
">>> featureset\n"
|
|
|
|
"<mapnik._mapnik.Featureset object at 0x23b0b0>\n"
|
|
|
|
">>> featureset.features\n"
|
|
|
|
">>> [<mapnik.Feature object at 0x3995630>]\n"
|
|
|
|
)
|
2011-11-14 04:54:32 +01:00
|
|
|
|
2010-08-27 18:16:16 +02:00
|
|
|
.def("query_point",query_point,
|
|
|
|
(arg("layer idx"),arg("x"),arg("y")),
|
2010-06-02 13:03:30 +02:00
|
|
|
"Query a Map Layer (by layer index) for features \n"
|
|
|
|
"intersecting the given x,y location in the coordinates\n"
|
|
|
|
"of map projection.\n"
|
2010-08-27 18:16:16 +02:00
|
|
|
"Layer index starts at 0 (first layer in map).\n"
|
2010-06-02 13:03:30 +02:00
|
|
|
"Will return a Mapnik Featureset if successful\n"
|
|
|
|
"otherwise will return None.\n"
|
|
|
|
"\n"
|
|
|
|
"Usage:\n"
|
|
|
|
">>> featureset = m.query_point(0,-122,48)\n"
|
|
|
|
">>> featureset\n"
|
|
|
|
"<mapnik._mapnik.Featureset object at 0x23b0b0>\n"
|
|
|
|
">>> featureset.features\n"
|
|
|
|
">>> [<mapnik.Feature object at 0x3995630>]\n"
|
|
|
|
)
|
2009-01-14 05:52:04 +01:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
.def("remove_all",&Map::remove_all,
|
|
|
|
"Remove all Mapnik Styles and layers from the Map.\n"
|
|
|
|
"\n"
|
|
|
|
"Usage:\n"
|
|
|
|
">>> m.remove_all()\n"
|
|
|
|
)
|
2011-11-14 04:54:32 +01:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
.def("remove_style",&Map::remove_style,
|
2010-08-27 18:16:16 +02:00
|
|
|
(arg("style_name")),
|
2010-06-02 13:03:30 +02:00
|
|
|
"Remove a Mapnik Style from the map.\n"
|
|
|
|
"\n"
|
|
|
|
"Usage:\n"
|
|
|
|
">>> m.remove_style('Style Name')\n"
|
|
|
|
)
|
2009-01-14 05:52:04 +01:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
.def("resize",&Map::resize,
|
2010-08-27 18:16:16 +02:00
|
|
|
(arg("width"),arg("height")),
|
2010-06-02 13:03:30 +02:00
|
|
|
"Resize a Mapnik Map.\n"
|
|
|
|
"\n"
|
|
|
|
"Usage:\n"
|
|
|
|
">>> m.resize(64,64)\n"
|
|
|
|
)
|
2011-11-14 04:54:32 +01:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
.def("scale", &Map::scale,
|
|
|
|
"Return the Map Scale.\n"
|
|
|
|
"Usage:\n"
|
|
|
|
"\n"
|
|
|
|
">>> m.scale()\n"
|
|
|
|
)
|
2009-03-21 12:22:10 +01:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
.def("scale_denominator", &Map::scale_denominator,
|
|
|
|
"Return the Map Scale Denominator.\n"
|
|
|
|
"Usage:\n"
|
|
|
|
"\n"
|
2010-08-27 18:16:16 +02:00
|
|
|
">>> m.scale_denominator()\n"
|
2010-06-02 13:03:30 +02:00
|
|
|
)
|
2011-11-14 04:54:32 +01:00
|
|
|
|
2014-08-28 11:17:15 +02:00
|
|
|
.def("view_transform",&Map::transform,
|
2010-08-27 18:16:16 +02:00
|
|
|
"Return the map ViewTransform object\n"
|
|
|
|
"which is used internally to convert between\n"
|
|
|
|
"geographic coordinates and screen coordinates.\n"
|
2010-06-02 13:03:30 +02:00
|
|
|
"\n"
|
|
|
|
"Usage:\n"
|
2011-11-14 04:54:32 +01:00
|
|
|
">>> m.view_transform()\n"
|
2010-06-02 13:03:30 +02:00
|
|
|
)
|
2011-11-14 04:54:32 +01:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
.def("zoom",&Map::zoom,
|
2010-08-27 18:16:16 +02:00
|
|
|
(arg("factor")),
|
|
|
|
"Zoom in or out by a given factor.\n"
|
2014-09-07 03:17:18 +02:00
|
|
|
"positive number larger than 1, zooms out\n"
|
|
|
|
"positive number smaller than 1, zooms in\n"
|
2010-08-27 18:16:16 +02:00
|
|
|
"\n"
|
2010-06-02 13:03:30 +02:00
|
|
|
"Usage:\n"
|
|
|
|
"\n"
|
|
|
|
">>> m.zoom(0.25)\n"
|
|
|
|
)
|
2011-11-14 04:54:32 +01:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
.def("zoom_all",&Map::zoom_all,
|
|
|
|
"Set the geographical extent of the map\n"
|
|
|
|
"to the combined extents of all active layers.\n"
|
|
|
|
"\n"
|
|
|
|
"Usage:\n"
|
|
|
|
">>> m.zoom_all()\n"
|
|
|
|
)
|
2011-11-14 04:54:32 +01:00
|
|
|
|
2010-06-25 17:23:35 +02:00
|
|
|
.def("zoom_to_box",&Map::zoom_to_box,
|
2010-08-27 18:16:16 +02:00
|
|
|
(arg("Boxd2")),
|
2010-06-02 13:03:30 +02:00
|
|
|
"Set the geographical extent of the map\n"
|
2010-08-27 18:16:16 +02:00
|
|
|
"by specifying a Mapnik Box2d.\n"
|
2010-06-02 13:03:30 +02:00
|
|
|
"\n"
|
|
|
|
"Usage:\n"
|
2010-08-27 18:16:16 +02:00
|
|
|
">>> extext = Box2d(-180.0, -90.0, 180.0, 90.0)\n"
|
2010-06-02 13:03:30 +02:00
|
|
|
">>> m.zoom_to_box(extent)\n"
|
2010-07-25 23:14:19 +02:00
|
|
|
)
|
2011-11-14 04:54:32 +01:00
|
|
|
|
2011-12-06 03:05:35 +01:00
|
|
|
.add_property("parameters",make_function(params_nonconst,return_value_policy<reference_existing_object>()),"TODO")
|
2009-03-30 06:17:03 +02:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
.add_property("aspect_fix_mode",
|
2010-06-25 17:23:35 +02:00
|
|
|
&Map::get_aspect_fix_mode,
|
|
|
|
&Map::set_aspect_fix_mode,
|
2010-08-27 18:16:16 +02:00
|
|
|
// TODO - how to add arg info to properties?
|
|
|
|
//(arg("aspect_fix_mode")),
|
2010-06-02 13:03:30 +02:00
|
|
|
"Get/Set aspect fix mode.\n"
|
|
|
|
"Usage:\n"
|
|
|
|
"\n"
|
|
|
|
">>> m.aspect_fix_mode = aspect_fix_mode.GROW_BBOX\n"
|
2011-11-14 04:54:32 +01:00
|
|
|
)
|
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
.add_property("background",make_function
|
|
|
|
(&Map::background,return_value_policy<copy_const_reference>()),
|
|
|
|
&Map::set_background,
|
2012-08-21 03:18:36 +02:00
|
|
|
"The background color of the map (same as background_color property).\n"
|
2010-06-02 13:03:30 +02:00
|
|
|
"\n"
|
|
|
|
"Usage:\n"
|
|
|
|
">>> m.background = Color('steelblue')\n"
|
|
|
|
)
|
2011-05-26 01:48:07 +02:00
|
|
|
|
2012-08-21 03:18:36 +02:00
|
|
|
.add_property("background_color",make_function
|
|
|
|
(&Map::background,return_value_policy<copy_const_reference>()),
|
|
|
|
&Map::set_background,
|
|
|
|
"The background color of the map.\n"
|
|
|
|
"\n"
|
|
|
|
"Usage:\n"
|
|
|
|
">>> m.background_color = Color('steelblue')\n"
|
|
|
|
)
|
|
|
|
|
|
|
|
.add_property("background_image",make_function
|
|
|
|
(&Map::background_image,return_value_policy<copy_const_reference>()),
|
|
|
|
&Map::set_background_image,
|
|
|
|
"The optional background image of the map.\n"
|
|
|
|
"\n"
|
|
|
|
"Usage:\n"
|
|
|
|
">>> m.background_image = '/path/to/image.png'\n"
|
|
|
|
)
|
|
|
|
|
2013-07-25 07:00:38 +02:00
|
|
|
.add_property("background_image_comp_op",&Map::background_image_comp_op,
|
|
|
|
&Map::set_background_image_comp_op,
|
|
|
|
"The background image compositing operation.\n"
|
|
|
|
"\n"
|
|
|
|
"Usage:\n"
|
|
|
|
">>> m.background_image_comp_op = mapnik.CompositeOp.src_over\n"
|
|
|
|
)
|
|
|
|
|
|
|
|
.add_property("background_image_opacity",&Map::background_image_opacity,
|
|
|
|
&Map::set_background_image_opacity,
|
|
|
|
"The background image opacity.\n"
|
|
|
|
"\n"
|
|
|
|
"Usage:\n"
|
|
|
|
">>> m.background_image_opacity = 1.0\n"
|
|
|
|
)
|
|
|
|
|
2011-05-26 01:48:07 +02:00
|
|
|
.add_property("base",
|
|
|
|
make_function(&Map::base_path,return_value_policy<copy_const_reference>()),
|
|
|
|
&Map::set_base_path,
|
|
|
|
"The base path of the map where any files using relative \n"
|
|
|
|
"paths will be interpreted as relative to.\n"
|
|
|
|
"\n"
|
|
|
|
"Usage:\n"
|
|
|
|
">>> m.base_path = '.'\n"
|
|
|
|
)
|
2011-11-14 04:54:32 +01:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
.add_property("buffer_size",
|
|
|
|
&Map::buffer_size,
|
|
|
|
&Map::set_buffer_size,
|
|
|
|
"Get/Set the size of buffer around map in pixels.\n"
|
|
|
|
"\n"
|
|
|
|
"Usage:\n"
|
|
|
|
">>> m.buffer_size\n"
|
|
|
|
"0 # zero by default\n"
|
|
|
|
">>> m.buffer_size = 2\n"
|
|
|
|
">>> m.buffer_size\n"
|
|
|
|
"2\n"
|
|
|
|
)
|
2011-11-14 04:54:32 +01:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
.add_property("height",
|
2010-06-25 17:23:35 +02:00
|
|
|
&Map::height,
|
|
|
|
&Map::set_height,
|
2010-06-02 13:03:30 +02:00
|
|
|
"Get/Set the height of the map in pixels.\n"
|
|
|
|
"Minimum settable size is 16 pixels.\n"
|
|
|
|
"\n"
|
|
|
|
"Usage:\n"
|
|
|
|
">>> m.height\n"
|
|
|
|
"400\n"
|
|
|
|
">>> m.height = 600\n"
|
|
|
|
">>> m.height\n"
|
|
|
|
"600\n"
|
|
|
|
)
|
2011-11-14 04:54:32 +01:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
.add_property("layers",make_function
|
2011-11-14 04:54:32 +01:00
|
|
|
(layers_nonconst,return_value_policy<reference_existing_object>()),
|
2010-06-02 13:03:30 +02:00
|
|
|
"The list of map layers.\n"
|
|
|
|
"\n"
|
|
|
|
"Usage:\n"
|
|
|
|
">>> m.layers\n"
|
|
|
|
"<mapnik._mapnik.layers object at 0x6d458>"
|
|
|
|
">>> m.layers[0]\n"
|
|
|
|
"<mapnik._mapnik.layer object at 0x5fe130>\n"
|
|
|
|
)
|
2009-01-14 07:12:55 +01:00
|
|
|
|
2011-04-14 04:20:33 +02:00
|
|
|
.add_property("maximum_extent",make_function
|
2012-08-01 16:44:36 +02:00
|
|
|
(&Map::maximum_extent,return_value_policy<copy_const_reference>()),
|
2012-04-04 21:07:15 +02:00
|
|
|
&set_maximum_extent,
|
2011-04-14 04:20:33 +02:00
|
|
|
"The maximum extent of the map.\n"
|
|
|
|
"\n"
|
|
|
|
"Usage:\n"
|
|
|
|
">>> m.maximum_extent = Box2d(-180,-90,180,90)\n"
|
|
|
|
)
|
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
.add_property("srs",
|
|
|
|
make_function(&Map::srs,return_value_policy<copy_const_reference>()),
|
|
|
|
&Map::set_srs,
|
|
|
|
"Spatial reference in Proj.4 format.\n"
|
|
|
|
"Either an epsg code or proj literal.\n"
|
|
|
|
"For example, a proj literal:\n"
|
2010-08-10 20:18:31 +02:00
|
|
|
"\t'+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs'\n"
|
2010-06-02 13:03:30 +02:00
|
|
|
"and a proj epsg code:\n"
|
|
|
|
"\t'+init=epsg:4326'\n"
|
|
|
|
"\n"
|
|
|
|
"Note: using epsg codes requires the installation of\n"
|
|
|
|
"the Proj.4 'epsg' data file normally found in '/usr/local/share/proj'\n"
|
|
|
|
"\n"
|
|
|
|
"Usage:\n"
|
|
|
|
">>> m.srs\n"
|
2010-08-10 20:18:31 +02:00
|
|
|
"'+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs' # The default srs if not initialized with custom srs\n"
|
2010-06-02 13:03:30 +02:00
|
|
|
">>> # set to google mercator with Proj.4 literal\n"
|
|
|
|
"... \n"
|
2013-01-28 19:48:13 +01:00
|
|
|
">>> m.srs = '+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over'\n"
|
2010-06-02 13:03:30 +02:00
|
|
|
)
|
2011-11-14 04:54:32 +01:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
.add_property("width",
|
2010-06-25 17:23:35 +02:00
|
|
|
&Map::width,
|
|
|
|
&Map::set_width,
|
2010-06-02 13:03:30 +02:00
|
|
|
"Get/Set the width of the map in pixels.\n"
|
|
|
|
"Minimum settable size is 16 pixels.\n"
|
|
|
|
"\n"
|
|
|
|
"Usage:\n"
|
|
|
|
">>> m.width\n"
|
|
|
|
"600\n"
|
|
|
|
">>> m.width = 800\n"
|
|
|
|
">>> m.width\n"
|
|
|
|
"800\n"
|
|
|
|
)
|
2014-05-28 16:40:59 +02:00
|
|
|
// comparison
|
|
|
|
.def(self == self)
|
2010-06-02 13:03:30 +02:00
|
|
|
;
|
2006-02-01 00:09:52 +01:00
|
|
|
}
|