disable polygon merg for z10-
This commit is contained in:
parent
2246a49265
commit
07abba16bc
1 changed files with 7 additions and 1 deletions
|
@ -447,7 +447,13 @@ for zoom, zsheet in mapniksheet.iteritems():
|
|||
sqlz = " OR ".join(sql)
|
||||
itags = ", ".join(itags)
|
||||
#itags = "\""+ itags+"\""
|
||||
sqlz = """select %s, ST_PointOnSurface(way) as way
|
||||
if zoom >= 10:
|
||||
sqlz = """select %s, ST_PointOnSurface(way) as way
|
||||
from planet_osm_%s
|
||||
where (%s) and (%s) and way && ST_Expand(!bbox!,3000) order by way_area
|
||||
"""%(itags,layer_type,ttext,sqlz)
|
||||
else:
|
||||
sqlz = """select %s, ST_PointOnSurface(way) as way
|
||||
from (
|
||||
select (ST_Dump(ST_Multi(ST_Buffer(ST_Collect(p.way),0)))).geom as way, %s
|
||||
from (
|
||||
|
|
Loading…
Add table
Reference in a new issue