mirror of
https://github.com/systemed/tilemaker.git
synced 2026-05-06 16:30:00 -04:00
23 lines
428 B
Lua
23 lines
428 B
Lua
-- Data processing based on openmaptiles.org schema
|
|
-- https://openmaptiles.org/schema/
|
|
-- Copyright (c) 2016, KlokanTech.com & OpenMapTiles contributors.
|
|
-- Used under CC-BY 4.0
|
|
|
|
-- Enter/exit Tilemaker
|
|
function init_function()
|
|
end
|
|
function exit_function()
|
|
end
|
|
|
|
node_keys = {}
|
|
function node_function(node)
|
|
end
|
|
|
|
function way_function(way)
|
|
end
|
|
|
|
-- Remap coastlines
|
|
function attribute_function(attr)
|
|
return { class="ocean" }
|
|
end
|