Fix: don't index 'all_streets'
This commit is contained in:
parent
07c1cc0bee
commit
c1c2390694
3 changed files with 5 additions and 3 deletions
|
@ -64,7 +64,10 @@ class TileCountServer extends Script {
|
|||
handle: async () => {
|
||||
const layers = await tcs.getLayers()
|
||||
const meta = await tcs.getMeta()
|
||||
return JSON.stringify({ meta, layers: Array.from(layers) })
|
||||
const mostSuitable = await tcs.findSuitableDatabases()
|
||||
return JSON.stringify({ meta,
|
||||
suitableDatabases: mostSuitable,
|
||||
layers: Array.from(layers) })
|
||||
},
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue