wip: local tileserver

This commit is contained in:
Zack Pollard
2024-07-27 00:01:12 +01:00
parent e748945b4f
commit fe84f1cc90
9 changed files with 6576 additions and 3 deletions

View File

@@ -3216,6 +3216,74 @@
]
}
},
"/map/tiles.json": {
"get": {
"operationId": "getTilesJson",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
},
"description": ""
}
},
"tags": [
"Map"
]
}
},
"/map/tiles/{z}/{x}/{y}.{format}": {
"get": {
"operationId": "getTiles",
"parameters": [
{
"name": "format",
"required": true,
"in": "path",
"schema": {
"type": "string"
}
},
{
"name": "x",
"required": true,
"in": "path",
"schema": {
"type": "number"
}
},
{
"name": "y",
"required": true,
"in": "path",
"schema": {
"type": "number"
}
},
{
"name": "z",
"required": true,
"in": "path",
"schema": {
"type": "number"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"tags": [
"Map"
]
}
},
"/memories": {
"get": {
"operationId": "searchMemories",