2026-06-22 15:28:12 +00:00
|
|
|
|
# Nextcloud Maps – Integration mit rd13_tile_server
|
2026-05-30 15:57:07 +00:00
|
|
|
|
#
|
|
|
|
|
|
# Nextcloud Maps App: https://apps.nextcloud.com/apps/maps
|
|
|
|
|
|
#
|
2026-06-22 15:28:12 +00:00
|
|
|
|
# Admin-Panel:
|
2026-05-30 17:15:44 +00:00
|
|
|
|
# Einstellungen -> Verwaltung -> Maps -> Tile server URL
|
2026-05-30 15:57:07 +00:00
|
|
|
|
#
|
2026-06-22 15:28:12 +00:00
|
|
|
|
# -------------------------------------------------------------------------
|
|
|
|
|
|
# Empfohlene URLs fuer dieses Projekt
|
|
|
|
|
|
# -------------------------------------------------------------------------
|
2026-05-30 15:57:07 +00:00
|
|
|
|
#
|
2026-06-22 15:28:12 +00:00
|
|
|
|
# 1) OSM Raster (stabil, einfach):
|
|
|
|
|
|
# https://tiles.rd13server.de/styles/osm-intl/{z}/{x}/{y}.png
|
2026-05-30 15:57:07 +00:00
|
|
|
|
#
|
2026-06-22 15:28:12 +00:00
|
|
|
|
# 2) Europa-Detail Raster (z16 innerhalb Europa):
|
|
|
|
|
|
# https://tiles.rd13server.de/styles/europa-detail/{z}/{x}/{y}.png
|
2026-05-30 15:57:07 +00:00
|
|
|
|
#
|
2026-06-22 15:28:12 +00:00
|
|
|
|
# 3) Satellit Raster:
|
|
|
|
|
|
# https://tiles.rd13server.de/styles/satelite-world/{z}/{x}/{y}.png
|
2026-05-30 15:57:07 +00:00
|
|
|
|
#
|
2026-06-22 15:28:12 +00:00
|
|
|
|
# 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
|
2026-05-30 17:15:44 +00:00
|
|
|
|
#
|
2026-06-22 15:28:12 +00:00
|
|
|
|
# -------------------------------------------------------------------------
|
|
|
|
|
|
# Konfiguration per occ
|
|
|
|
|
|
# -------------------------------------------------------------------------
|
2026-05-30 17:15:44 +00:00
|
|
|
|
#
|
2026-06-22 15:28:12 +00:00
|
|
|
|
# Beispiel (Raster-OSM):
|
|
|
|
|
|
# php occ config:app:set maps tileserverUrl \
|
|
|
|
|
|
# --value="https://tiles.rd13server.de/styles/osm-intl/{z}/{x}/{y}.png"
|
2026-05-30 15:57:07 +00:00
|
|
|
|
#
|
2026-06-22 15:28:12 +00:00
|
|
|
|
# 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"
|