We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92a8c4d commit bffa25cCopy full SHA for bffa25c
1 file changed
lua/themepark.lua
@@ -52,6 +52,7 @@ local themepark = {
52
schema = 'public',
53
srid = 3857,
54
attribution = '© OpenStreetMap contributors - https://openstreetmap.org/copyright',
55
+ cluster = 'auto',
56
},
57
process = {
58
node = {},
@@ -375,6 +376,10 @@ function themepark:add_table(data)
375
376
data.schema = self.options.schema
377
end
378
379
+ if not data.cluster then
380
+ data.cluster = self.options.cluster
381
+ end
382
+
383
table.insert(self.layers, data)
384
385
if not data.external then
0 commit comments