+ accept empty bboxes for point geom
This commit is contained in:
parent
f50f908546
commit
d60a918fb8
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ namespace mapnik {
|
|||
|
||||
bool valid_envelope(mapnik::Envelope<double> const& e)
|
||||
{
|
||||
return (e.minx() < e.maxx() && e.miny() < e.maxy()) ;
|
||||
return (e.minx() <= e.maxx() && e.miny() <= e.maxy()) ;
|
||||
}
|
||||
|
||||
std::string table_from_sql(std::string const& sql)
|
||||
|
|
Loading…
Add table
Reference in a new issue