mirror of
https://github.com/enzet/map-machine.git
synced 2025-08-02 16:19:20 +02:00
Issue #69: remove tile regeneration.
This commit is contained in:
parent
e3fa142860
commit
119d6ffaa1
4 changed files with 28 additions and 4 deletions
|
@ -159,10 +159,8 @@ def main(options) -> None:
|
|||
svg.write(output_file)
|
||||
|
||||
|
||||
def draw_element(options):
|
||||
"""
|
||||
Draw single node, line, or area.
|
||||
"""
|
||||
def draw_element(options) -> None:
|
||||
"""Draw single node, line, or area."""
|
||||
if options.node:
|
||||
target: str = "node"
|
||||
tags_description = options.node
|
||||
|
@ -211,6 +209,7 @@ def draw_element(options):
|
|||
|
||||
|
||||
def init_scheme() -> Scheme:
|
||||
"""Initialize default scheme."""
|
||||
return Scheme(workspace.DEFAULT_SCHEME_PATH)
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue