mirror of
https://github.com/maplibre/martin.git
synced 2024-12-19 12:51:37 +03:00
555a1fccdd
* added manual coverage justfile command * a lot of small refactorings of config and argument parsing * feature: support jsonb query param for functions * cleaned up public/private access * make all tests populate with a predefined values to avoid issues with random data
19 lines
655 B
PL/PgSQL
19 lines
655 B
PL/PgSQL
DROP FUNCTION IF EXISTS public.function_zxy_query_jsonb;
|
|
|
|
CREATE OR REPLACE FUNCTION public.function_zxy_query_jsonb(z integer, x integer, y integer, query jsonb) RETURNS bytea AS $$
|
|
DECLARE
|
|
mvt bytea;
|
|
BEGIN
|
|
RAISE NOTICE 'query: %', query;
|
|
|
|
SELECT INTO mvt ST_AsMVT(tile, 'public.function_zxy_query_jsonb', 4096, 'geom') FROM (
|
|
SELECT
|
|
ST_AsMVTGeom(ST_Transform(ST_CurveToLine(geom), 3857), ST_TileEnvelope(z, x, y), 4096, 64, true) AS geom
|
|
FROM public.table_source
|
|
WHERE geom && ST_Transform(ST_TileEnvelope(z, x, y), 4326)
|
|
) as tile WHERE geom IS NOT NULL;
|
|
|
|
RETURN mvt;
|
|
END
|
|
$$ LANGUAGE plpgsql IMMUTABLE STRICT PARALLEL SAFE;
|