From e40a9bab4a3879918daaf19782cfdd9dc9c06e68 Mon Sep 17 00:00:00 2001 From: setop <7794056+setop@users.noreply.github.com> Date: Tue, 25 Feb 2025 00:24:15 +0100 Subject: [PATCH] add height parameter to map component This parameter is used in the example below --- examples/official-site/sqlpage/migrations/10_map.sql | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/examples/official-site/sqlpage/migrations/10_map.sql b/examples/official-site/sqlpage/migrations/10_map.sql index 8966c899..040614c6 100644 --- a/examples/official-site/sqlpage/migrations/10_map.sql +++ b/examples/official-site/sqlpage/migrations/10_map.sql @@ -85,6 +85,14 @@ VALUES TRUE, TRUE ), + ( + 'map', + 'height', + 'Height of the map, in pixels. Default to 350px', + 'INTEGER', + TRUE, + TRUE + ), ( 'map', 'latitude', @@ -246,4 +254,4 @@ or abstract 2D data visualizations. } ]' ) - ); \ No newline at end of file + );