Skip to content

Commit

Permalink
Merge pull request #50490 from DanRoscigno/docs-svg-funxtion
Browse files Browse the repository at this point in the history
add svg function docs
  • Loading branch information
DanRoscigno committed Jun 2, 2023
2 parents a120286 + 71c5b1d commit a84eba6
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions docs/en/sql-reference/functions/geo/svg.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
---
slug: /en/sql-reference/functions/geo/svg
sidebar_label: SVG
title: "Functions for Generating SVG images from Geo data"
---

## Syntax

``` sql
SVG(geometry,[style])
```

### Parameters

- `geometry` — Geo data
- `style` — Optional style name

### Returned value

- The SVG representation of the geometry:
- SVG circle
- SVG polygon
- SVG path

Type: String

## Examples

### Circle
```sql
SELECT SVG((0., 0.))
```
```response
<circle cx="0" cy="0" r="5" style=""/>
```

### Polygon
```sql
SELECT SVG([(0., 0.), (10, 0), (10, 10), (0, 10)])
```
```response
<polygon points="0,0 0,10 10,10 10,0 0,0" style=""/>
```

### Path
```sql
SELECT SVG([[(0., 0.), (10, 0), (10, 10), (0, 10)], [(4., 4.), (5, 4), (5, 5), (4, 5)]])
```
```response
<g fill-rule="evenodd"><path d="M 0,0 L 0,10 L 10,10 L 10,0 L 0,0M 4,4 L 5,4 L 5,5 L 4,5 L 4,4 z " style=""/></g>
```

0 comments on commit a84eba6

Please sign in to comment.