rd13_tile_server/docs/nextcloud-config.md

30 lines
1 KiB
Markdown
Raw Normal View History

# Nextcloud Maps eigenen Tile-Server verwenden
#
# Nextcloud Maps App: https://apps.nextcloud.com/apps/maps
#
# Konfiguration in Nextcloud Admin-Panel:
# Einstellungen -> Verwaltung -> Maps -> Tile server URL
#
# Tile-Server-URLs (Martin-Format):
#
# OSM Vektorkarte (MapLibre GL Style Nextcloud rendert client-seitig):
# https://TILE_SERVER_URL/styles/osm-bright
#
# Satellitenkarte (Raster-Tiles, direkt nutzbar):
# https://TILE_SERVER_URL/satellite/{z}/{x}/{y}
#
# Rohe Vektor-Tiles (OpenMapTiles-Schema):
# https://TILE_SERVER_URL/osm/{z}/{x}/{y}
#
# Ueber occ (Kommandozeile) setzen:
# php occ config:app:set maps tileserverUrl # --value="https://TILE_SERVER_URL/satellite/{z}/{x}/{y}"
#
# Hinweis: Fuer OSM als gerendertes Rasterbild nutze den Style-Endpunkt.
# Nextcloud Maps unterstuetzt MapLibre GL Styles ab Version 1.4+.
#
# Beispiel fuer docker-compose override wenn Nextcloud im selben Stack laeuft:
#
# nextcloud:
# environment:
# MAPS_TILE_SERVER: "http://rd13_martin:3000/styles/osm-bright"