made width and height read-write
This commit is contained in:
parent
a4c81560fd
commit
258b91fad2
1 changed files with 2 additions and 2 deletions
|
@ -89,8 +89,8 @@ void export_map()
|
||||||
;
|
;
|
||||||
|
|
||||||
class_<Map>("Map","The map object.",init<int,int,optional<std::string const&> >())
|
class_<Map>("Map","The map object.",init<int,int,optional<std::string const&> >())
|
||||||
.add_property("width",&Map::getWidth,"The width of the map image.")
|
.add_property("width",&Map::getWidth, &Map::setWidth, "The width of the map.")
|
||||||
.add_property("height",&Map::getHeight,"The height of the map image.")
|
.add_property("height",&Map::getHeight, &Map::setHeight, "The height of the map.")
|
||||||
.add_property("srs",make_function(&Map::srs,return_value_policy<copy_const_reference>()),
|
.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\"")
|
&Map::set_srs,"Spatial reference in proj4 format e.g. \"+proj=latlong +datum=WGS84\"")
|
||||||
.add_property("background",make_function
|
.add_property("background",make_function
|
||||||
|
|
Loading…
Reference in a new issue