Issue #62: add cache path option.

This commit is contained in:
Sergey Vartanov 2021-07-08 01:52:24 +03:00
parent 376087949a
commit e18419cc3a
4 changed files with 19 additions and 8 deletions

View file

@ -47,6 +47,11 @@ def parse_options(args) -> argparse.Namespace:
default=18,
dest="scale",
type=float)
parser.add_argument(
"--cache",
help="path for temporary OSM files",
default="cache"
)
parser.add_argument(
"--labels",
help="label drawing mode: `no`, `main`, or `all`",