Skip to content

Commit f22f35d

Browse files
committed
[GeoPoint] Add doc page
1 parent 01a9eab commit f22f35d

3 files changed

Lines changed: 19 additions & 1 deletion

File tree

packages/layerchart/src/routes/_NavMenu.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
'Threshold',
6060
],
6161
Interactions: ['Tooltip', 'TooltipContext', 'Highlight', 'Zoom'],
62-
Geo: ['GeoContext', 'GeoPath', 'GeoPoint', 'GeoTile', 'Graticule', 'TileImage'],
62+
Geo: ['GeoContext', 'GeoCircle', 'GeoPath', 'GeoPoint', 'GeoTile', 'Graticule', 'TileImage'],
6363
Hierarchy: ['Pack', 'Partition', 'Sankey'],
6464
Clipping: ['ClipPath', 'ChartClipPath', 'CircleClipPath', 'RectClipPath'],
6565
Other: ['Blur', 'Bounds', 'ColorRamp', 'LinearGradient', 'MotionPath', 'Pattern'],
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<script lang="ts">
2+
import Chart, { Svg } from '$lib/components/Chart.svelte';
3+
import Preview from '$lib/docs/Preview.svelte';
4+
</script>
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import api from '$lib/components/GeoCircle.svelte?raw&sveld';
2+
import source from '$lib/components/GeoCircle.svelte?raw';
3+
import pageSource from './+page.svelte?raw';
4+
5+
export async function load() {
6+
return {
7+
meta: {
8+
api,
9+
source,
10+
pageSource,
11+
related: ['examples/Timezones'],
12+
},
13+
};
14+
}

0 commit comments

Comments
 (0)