mirror of
https://github.com/iiab/iiab.git
synced 2025-02-15 04:32:11 +00:00
OSM symlink typos & clarifications
This commit is contained in:
parent
6b72abdd86
commit
b40e30b574
1 changed files with 14 additions and 14 deletions
|
@ -31,22 +31,22 @@
|
||||||
dest: "{{ vector_map_path }}/viewer/cities1000.sqlite"
|
dest: "{{ vector_map_path }}/viewer/cities1000.sqlite"
|
||||||
when: not cities_installed.stat.exists
|
when: not cities_installed.stat.exists
|
||||||
|
|
||||||
- name: Create a link to osm catalog in /common/assets
|
- name: Symlink {{ doc_root }}/common/assets/map-catalog.json -> /etc/iiab/map-catalog.json
|
||||||
file:
|
file:
|
||||||
src: /etc/iiab/map-catalog.json
|
src: /etc/iiab/map-catalog.json
|
||||||
dest: "{{ doc_root }}/common/assets/map-catalog.json" # /library/www/html
|
path: "{{ doc_root }}/common/assets/map-catalog.json" # /library/www/html
|
||||||
state: link
|
state: link
|
||||||
|
|
||||||
- name: Create a link to osm catalog in {{ vector_map_path }}/maplist/assets
|
- name: Symlink {{ vector_map_path }}/test-page/assets/map-catalog.json -> /etc/iiab/map-catalog.json
|
||||||
file:
|
file:
|
||||||
src: /etc/iiab/map-catalog.json
|
src: /etc/iiab/map-catalog.json
|
||||||
dest: "{{ vector_map_path }}/test-page/assets/map-catalog.json"
|
path: "{{ vector_map_path }}/test-page/assets/map-catalog.json"
|
||||||
state: link
|
state: link
|
||||||
|
|
||||||
- name: Create a link to regions.json in {{ vector_map_path }}/maplist/assets
|
- name: Symlink {{ vector_map_path }}/maplist/assets/regions.json -> /etc/iiab/regions.json
|
||||||
file:
|
file:
|
||||||
src: /etc/iiab/regions.json
|
src: /etc/iiab/regions.json
|
||||||
dest: "{{ vector_map_path }}/maplist/assets/regions.json"
|
path: "{{ vector_map_path }}/maplist/assets/regions.json"
|
||||||
state: link
|
state: link
|
||||||
|
|
||||||
- name: Download the JavaScript bundle with OpenLayers (test-page-bundle.js) for test page http://box/maps/maplist
|
- name: Download the JavaScript bundle with OpenLayers (test-page-bundle.js) for test page http://box/maps/maplist
|
||||||
|
@ -83,16 +83,16 @@
|
||||||
url: "{{ map_catalog_url }}/planet_z0-z6_2019.mbtiles"
|
url: "{{ map_catalog_url }}/planet_z0-z6_2019.mbtiles"
|
||||||
dest: "{{ vector_map_path }}/installer/"
|
dest: "{{ vector_map_path }}/installer/"
|
||||||
|
|
||||||
- name: Create a synlink from tiles to detail.mbtiles
|
- name: Symlink {{ vector_map_path }}/installer/detail.mbtiles -> {{ vector_map_path }}/installer/planet_z0-z6_2019.mbtiles
|
||||||
file:
|
file:
|
||||||
src: "{{ vector_map_path }}/installer/planet_z0-z6_2019.mbtiles"
|
src: "{{ vector_map_path }}/installer/planet_z0-z6_2019.mbtiles"
|
||||||
dest: "{{ vector_map_path }}/installer/detail.mbtiles"
|
path: "{{ vector_map_path }}/installer/detail.mbtiles"
|
||||||
state: link
|
state: link
|
||||||
|
|
||||||
- name: Link to the World Map to zoom 6
|
- name: Symlink {{ vector_map_path }}/viewer/tiles/planet_z0-z6_2019.mbtiles -> {{ vector_map_path }}/installer/planet_z0-z6_2019.mbtiles
|
||||||
file:
|
file:
|
||||||
src: "{{ vector_map_path }}/installer/planet_z0-z6_2019.mbtiles"
|
src: "{{ vector_map_path }}/installer/planet_z0-z6_2019.mbtiles"
|
||||||
dest: "{{ vector_map_path }}/viewer/tiles/planet_z0-z6_2019.mbtiles"
|
path: "{{ vector_map_path }}/viewer/tiles/planet_z0-z6_2019.mbtiles"
|
||||||
state: link
|
state: link
|
||||||
|
|
||||||
- name: Copy the map abbreviated satellite images
|
- name: Copy the map abbreviated satellite images
|
||||||
|
@ -140,17 +140,17 @@
|
||||||
- style-sat.json
|
- style-sat.json
|
||||||
- view_list.png
|
- view_list.png
|
||||||
|
|
||||||
- name: Place a link to bboxes.geojson for Admin Console
|
- name: Symlink {{ vector_map_path }}/maplist/assets/bboxes.geojson -> {{ vector_map_path }}/viewer/assets/bboxes.geojson for Admin Console
|
||||||
file:
|
file:
|
||||||
src: "{{ vector_map_path }}/viewer/assets/bboxes.geojson"
|
src: "{{ vector_map_path }}/viewer/assets/bboxes.geojson"
|
||||||
dest: "{{ vector_map_path }}/maplist/assets/bboxes.geojson"
|
path: "{{ vector_map_path }}/maplist/assets/bboxes.geojson"
|
||||||
state: link
|
state: link
|
||||||
force: True
|
force: True
|
||||||
|
|
||||||
- name: Place a link to countries.json for Admin Console
|
- name: Symlink {{ vector_map_path }}/maplist/assets/countries.json -> {{ vector_map_path }}/viewer/assets/countries.json for Admin Console
|
||||||
file:
|
file:
|
||||||
src: "{{ vector_map_path }}/viewer/assets/countries.json"
|
src: "{{ vector_map_path }}/viewer/assets/countries.json"
|
||||||
dest: "{{ vector_map_path }}/maplist/assets/countries.json"
|
path: "{{ vector_map_path }}/maplist/assets/countries.json"
|
||||||
state: link
|
state: link
|
||||||
force: True
|
force: True
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue