43 lines
1.7 KiB
Markdown
43 lines
1.7 KiB
Markdown
# Nextcloud Maps – Integration mit rd13_tile_server
|
||
#
|
||
# Nextcloud Maps App: https://apps.nextcloud.com/apps/maps
|
||
#
|
||
# Admin-Panel:
|
||
# Einstellungen -> Verwaltung -> Maps -> Tile server URL
|
||
#
|
||
# -------------------------------------------------------------------------
|
||
# Empfohlene URLs fuer dieses Projekt
|
||
# -------------------------------------------------------------------------
|
||
#
|
||
# 1) OSM Raster (stabil, einfach):
|
||
# https://tiles.rd13server.de/styles/osm-intl/{z}/{x}/{y}.png
|
||
#
|
||
# 2) Europa-Detail Raster (z16 innerhalb Europa):
|
||
# https://tiles.rd13server.de/styles/europa-detail/{z}/{x}/{y}.png
|
||
#
|
||
# 3) Satellit Raster:
|
||
# https://tiles.rd13server.de/styles/satelite-world/{z}/{x}/{y}.png
|
||
#
|
||
# Optional fuer MapLibre-faehige Clients (Style JSON):
|
||
# https://tiles.rd13server.de/styles/osm-intl/style.json
|
||
# https://tiles.rd13server.de/styles/europa-detail/style.json
|
||
# https://tiles.rd13server.de/styles/satelite-world/style.json
|
||
#
|
||
# -------------------------------------------------------------------------
|
||
# Konfiguration per occ
|
||
# -------------------------------------------------------------------------
|
||
#
|
||
# Beispiel (Raster-OSM):
|
||
# php occ config:app:set maps tileserverUrl \
|
||
# --value="https://tiles.rd13server.de/styles/osm-intl/{z}/{x}/{y}.png"
|
||
#
|
||
# Beispiel (Europa-Detail):
|
||
# php occ config:app:set maps tileserverUrl \
|
||
# --value="https://tiles.rd13server.de/styles/europa-detail/{z}/{x}/{y}.png"
|
||
#
|
||
# -------------------------------------------------------------------------
|
||
# Funktionstest
|
||
# -------------------------------------------------------------------------
|
||
#
|
||
# curl -I "https://tiles.rd13server.de/styles/osm-intl/14/8802/5373.png"
|
||
# curl -I "https://tiles.rd13server.de/styles/europa-detail/16/35210/21493.png"
|