7 lines
658 B
MySQL
7 lines
658 B
MySQL
|
CREATE OR REPLACE FUNCTION layer_exploration(bbox geometry, zoom_level int)
|
||
|
RETURNS TABLE(osm_id bigint, geometry geometry, class text, subclass text, name text, description text, website text, wikidata text, wikipedia text, inscription text, memorial text) AS $$
|
||
|
SELECT osm_id, geometry, class, subclass, NULLIF(name, '') AS name, NULLIF(description, '') AS description, NULLIF(website, '') AS website, NULLIF(wikidata, '') AS wikidata, NULLIF(wikipedia, '') AS wikipedia, NULLIF(inscription, '') AS inscription, NULLIF(memorial, '') AS memorial
|
||
|
FROM osm_exploration_point
|
||
|
WHERE zoom_level >= 14 AND geometry && bbox;
|
||
|
$$ LANGUAGE SQL IMMUTABLE;
|