Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-moody committed Apr 4, 2023
1 parent 912d0c5 commit 94785a6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions roles/cmdsrv/files/scripts/osm-vect_v2_finish_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ def main():
# create init.json which sets initial coords and zoom
if is_map:
init = {}
map = map_catalog[map_id]
init['region'] = map['region']
init['zoom'] = map['zoom']
init['center_lon'] = map['center_lon']
init['center_lat'] = map['center_lat']
osm_map = map_catalog[map_id]
init['region'] = osm_map['region']
init['zoom'] = osm_map['zoom']
init['center_lon'] = osm_map['center_lon']
init['center_lat'] = osm_map['center_lat']
init_fn = viewer_path + '/init.json'
adm.write_json_file(init, init_fn)

Expand Down
2 changes: 1 addition & 1 deletion roles/common/templates/adm_lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -781,7 +781,7 @@ def write_vector_map_idx(installed_maps):
idx_dict = {}
for fname in installed_maps:
region = extract_region_from_filename(fname)
if map == 'maplist': continue # not a real region
if region == 'maplist': continue # not a real region
map_dict = map_catalog['regions'].get(region, '')
if map_dict == '': continue

Expand Down

0 comments on commit 94785a6

Please sign in to comment.