repeat shields
This commit is contained in:
parent
be6487a425
commit
c4e3a07b58
2 changed files with 5 additions and 4 deletions
|
@ -683,6 +683,7 @@ if options.renderer == "mapnik":
|
|||
topacity= relaxedFloat(entry["style"].get("shield-text-opacity",entry["style"].get("opacity","1")))
|
||||
toffset= relaxedFloat(entry["style"].get("shield-text-offset","0"))
|
||||
ttransform = entry["style"].get("shield-text-transform","none")
|
||||
tspacing = entry["style"].get("shield-spacing","500")
|
||||
xml += xml_rule_start()
|
||||
xml += x_scale
|
||||
|
||||
|
@ -693,7 +694,7 @@ if options.renderer == "mapnik":
|
|||
"",
|
||||
"",
|
||||
ttext,tface,tsize,tcolor, "#000000", 0, "center",
|
||||
toffset,toverlap,tdistance,twrap,talign,topacity, ttransform)
|
||||
toffset,toverlap,tdistance,twrap,talign,topacity, ttransform, False, tspacing)
|
||||
sql.add(entry["sql"])
|
||||
itags.update(entry["chooser"].get_interesting_tags(entry["type"], zoom))
|
||||
xml += xml_rule_end()
|
||||
|
|
|
@ -150,7 +150,7 @@ def xml_textsymbolizer(
|
|||
"""%(text,face,int(float(size)),color,halo_color,halo_radius,placement,dx,dy,overlap,wrap_width,distance,align,opacity,pos, transform)
|
||||
|
||||
def xml_shieldsymbolizer(path="", width="", height="",
|
||||
text="name",face="DejaVu Sans Book",size="10",color="#000000", halo_color="#ffffff", halo_radius="0", placement="line", offset="0", overlap="false", distance="26", wrap_width=256, align="center", opacity="1", transform="none", unlock_image='true'):
|
||||
text="name",face="DejaVu Sans Book",size="10",color="#000000", halo_color="#ffffff", halo_radius="0", placement="line", offset="0", overlap="false", distance="26", wrap_width=256, align="center", opacity="1", transform="none", unlock_image='true', spacing='500'):
|
||||
color = nicecolor(color)
|
||||
halo_color = nicecolor(halo_color)
|
||||
placement = {"center": "point"}.get(placement.lower(), placement)
|
||||
|
@ -161,9 +161,9 @@ def xml_shieldsymbolizer(path="", width="", height="",
|
|||
if height:
|
||||
height =' height="%s" '%height
|
||||
return """
|
||||
<ShieldSymbolizer file="%s%s" %s %s name="%s" fontset_name="%s" size="%s" fill="%s" halo_fill= "%s" halo_radius="%s" placement="%s" dy="%s" allow_overlap="%s" wrap_width="%s" min_distance="%s" horizontal_alignment="%s" opacity="%s" text-transform="%s" unlock-image="%s" />
|
||||
<ShieldSymbolizer file="%s%s" %s %s name="%s" fontset_name="%s" size="%s" fill="%s" halo_fill= "%s" halo_radius="%s" placement="%s" dy="%s" allow_overlap="%s" wrap_width="%s" min_distance="%s" horizontal_alignment="%s" opacity="%s" text-transform="%s" unlock-image="%s" spacing="%s" />
|
||||
"""%(icons_path, \
|
||||
path, width, height,text,face,int(float(size)),color,halo_color,halo_radius,placement,offset,overlap,wrap_width,distance,align,opacity, transform, unlock_image)
|
||||
path, width, height,text,face,int(float(size)),color,halo_color,halo_radius,placement,offset,overlap,wrap_width,distance,align,opacity, transform, unlock_image, spacing )
|
||||
|
||||
def xml_filter(string):
|
||||
return """
|
||||
|
|
Loading…
Add table
Reference in a new issue