mirror of
https://github.com/maplibre/martin.git
synced 2024-12-22 14:21:39 +03:00
18 lines
656 B
MySQL
18 lines
656 B
MySQL
|
DROP FUNCTION IF EXISTS public.function_zxy_query;
|
||
|
CREATE OR REPLACE FUNCTION public.function_zxy_query(z integer, x integer, y integer, query_params json) RETURNS bytea AS $$
|
||
|
DECLARE
|
||
|
mvt bytea;
|
||
|
BEGIN
|
||
|
RAISE NOTICE 'query_params: %', query_params;
|
||
|
|
||
|
SELECT INTO mvt ST_AsMVT(tile, 'public.function_zxy_query', 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;
|