--- slug: /en/sql-reference/functions/geo/svg sidebar_label: SVG title: "Functions for Generating SVG images from Geo data" --- ## Svg Returns a string of select SVG element tags from Geo data. **Syntax** ``` sql Svg(geometry,[style]) ``` Aliases: `SVG`, `svg` **Parameters** - `geometry` — Geo data. [Geo](../../data-types/geo). - `style` — Optional style name. [String](../../data-types/string). **Returned value** - The SVG representation of the geometry. [String](../../data-types/string). - SVG circle - SVG polygon - SVG path **Examples** **Circle** Query: ```sql SELECT SVG((0., 0.)) ``` Result: ```response ``` **Polygon** Query: ```sql SELECT SVG([(0., 0.), (10, 0), (10, 10), (0, 10)]) ``` Result: ```response ``` **Path** Query: ```sql SELECT SVG([[(0., 0.), (10, 0), (10, 10), (0, 10)], [(4., 4.), (5, 4), (5, 5), (4, 5)]]) ``` Result: ```response ```