mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
Update Svg documentation
This commit is contained in:
parent
a985721129
commit
c6426ddf4a
@ -4,48 +4,72 @@ sidebar_label: SVG
|
||||
title: "Functions for Generating SVG images from Geo data"
|
||||
---
|
||||
|
||||
## Syntax
|
||||
## Svg
|
||||
|
||||
Returns a string of select SVG element tags from Geo data.
|
||||
|
||||
**Syntax**
|
||||
|
||||
``` sql
|
||||
SVG(geometry,[style])
|
||||
Svg(geometry,[style])
|
||||
```
|
||||
|
||||
### Parameters
|
||||
Aliases: `SVG`, `svg`
|
||||
|
||||
- `geometry` — Geo data
|
||||
- `style` — Optional style name
|
||||
**Parameters**
|
||||
|
||||
### Returned value
|
||||
- `geometry` - Geo data. [Geo](../../data-types/geo).
|
||||
- `style` — Optional style name. [String](../../data-types/string).
|
||||
|
||||
**Returned value**
|
||||
|
||||
- The SVG representation of the geometry:
|
||||
- SVG circle
|
||||
- SVG polygon
|
||||
- SVG path
|
||||
|
||||
Type: String
|
||||
Type: [String](../../data-types/string)
|
||||
|
||||
## Examples
|
||||
**Examples**
|
||||
|
||||
**Circle**
|
||||
|
||||
Query:
|
||||
|
||||
### Circle
|
||||
```sql
|
||||
SELECT SVG((0., 0.))
|
||||
```
|
||||
|
||||
Result:
|
||||
|
||||
```response
|
||||
<circle cx="0" cy="0" r="5" style=""/>
|
||||
```
|
||||
|
||||
### Polygon
|
||||
**Polygon**
|
||||
|
||||
Query:
|
||||
|
||||
```sql
|
||||
SELECT SVG([(0., 0.), (10, 0), (10, 10), (0, 10)])
|
||||
```
|
||||
|
||||
Result:
|
||||
|
||||
```response
|
||||
<polygon points="0,0 0,10 10,10 10,0 0,0" style=""/>
|
||||
```
|
||||
|
||||
### Path
|
||||
**Path**
|
||||
|
||||
Query:
|
||||
|
||||
```sql
|
||||
SELECT SVG([[(0., 0.), (10, 0), (10, 10), (0, 10)], [(4., 4.), (5, 4), (5, 5), (4, 5)]])
|
||||
```
|
||||
|
||||
Result:
|
||||
|
||||
```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>
|
||||
```
|
||||
|
Loading…
Reference in New Issue
Block a user