Skip to content

Commit 140bcff

Browse files
committed
chore: unconscious commit
1 parent bbbba76 commit 140bcff

14 files changed

+731
-378
lines changed

.claude/patterns/018-fumadocs-usage.md

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -395,17 +395,6 @@ export { withArticle as default } from 'fumadocs-ui/page';
395395
## Article Content
396396
```
397397

398-
### Headings with Custom Anchors
399-
```mdx
400-
## Normal Heading
401-
402-
## Heading with Custom ID [#custom-id]
403-
404-
## Hidden from TOC [!toc]
405-
406-
## Only in TOC [toc]
407-
```
408-
409398
### Links
410399
```mdx
411400
[Internal Link](./other-page.mdx)

docs/content/docs/components/overlays/naver-map-arrowhead-path-overlay.mdx

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,19 @@ import { NaverMapView, NaverMapArrowheadPathOverlay } from '@mj-studio/react-nat
1616
function MapWithArrowPath() {
1717
return (
1818
<NaverMapView style={{ flex: 1 }}>
19-
<NaverMapArrowheadPathOverlay // [!code highlight]
20-
coords={[ // [!code highlight]
21-
{ latitude: 37.5, longitude: 126.9 }, // [!code highlight]
22-
{ latitude: 37.51, longitude: 126.91 }, // [!code highlight]
23-
{ latitude: 37.52, longitude: 126.92 }, // [!code highlight]
24-
]} // [!code highlight]
25-
headSizeRatio={2.5} // [!code highlight]
26-
width={8} // [!code highlight]
27-
color={'red'} // [!code highlight]
28-
outlineColor={'blue'} // [!code highlight]
29-
outlineWidth={2} // [!code highlight]
30-
onTap={() => console.log('Arrow path tapped')} // [!code highlight]
31-
/> // [!code highlight]
19+
<NaverMapArrowheadPathOverlay // [!code highlight:12]
20+
coords={[
21+
{ latitude: 37.5, longitude: 126.9 },
22+
{ latitude: 37.51, longitude: 126.91 },
23+
{ latitude: 37.52, longitude: 126.92 },
24+
]}
25+
headSizeRatio={2.5}
26+
width={8}
27+
color={'red'}
28+
outlineColor={'blue'}
29+
outlineWidth={2}
30+
onTap={() => console.log('Arrow path tapped')}
31+
/>
3232
</NaverMapView>
3333
);
3434
}

docs/content/docs/components/overlays/naver-map-circle-overlay.mdx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ import { NaverMapView, NaverMapCircleOverlay } from '@mj-studio/react-native-nav
1616
function MapWithCircle() {
1717
return (
1818
<NaverMapView style={{ flex: 1 }}>
19-
<NaverMapCircleOverlay // [!code highlight]
20-
latitude={37.5665} // [!code highlight]
21-
longitude={126.9780} // [!code highlight]
22-
radius={1000} // [!code highlight]
23-
color={'#ff00ff33'} // [!code highlight]
24-
outlineColor={'#ff00ff'} // [!code highlight]
25-
outlineWidth={2} // [!code highlight]
26-
/> // [!code highlight]
19+
<NaverMapCircleOverlay // [!code highlight:7]
20+
latitude={37.5665}
21+
longitude={126.9780}
22+
radius={1000}
23+
color={'#ff00ff33'}
24+
outlineColor={'#ff00ff'}
25+
outlineWidth={2}
26+
/>
2727
</NaverMapView>
2828
);
2929
}

docs/content/docs/components/overlays/naver-map-ground-overlay.mdx

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ import { NaverMapView, NaverMapGroundOverlay } from '@mj-studio/react-native-nav
1616
function MapWithGroundOverlay() {
1717
return (
1818
<NaverMapView style={{ flex: 1 }}>
19-
<NaverMapGroundOverlay // [!code highlight]
20-
image={{ assetName: 'thumbnail' }} // [!code highlight]
21-
region={{ // [!code highlight]
22-
latitude: 37.5, // [!code highlight]
23-
longitude: 126.9, // [!code highlight]
24-
latitudeDelta: 0.1, // [!code highlight]
25-
longitudeDelta: 0.1, // [!code highlight]
26-
}} // [!code highlight]
27-
onTap={() => console.log('Ground overlay tapped')} // [!code highlight]
28-
/> // [!code highlight]
19+
<NaverMapGroundOverlay // [!code highlight:9]
20+
image={{ assetName: 'thumbnail' }}
21+
region={{
22+
latitude: 37.5,
23+
longitude: 126.9,
24+
latitudeDelta: 0.1,
25+
longitudeDelta: 0.1,
26+
}}
27+
onTap={() => console.log('Ground overlay tapped')}
28+
/>
2929
</NaverMapView>
3030
);
3131
}

docs/content/docs/components/overlays/naver-map-marker-overlay.mdx

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ import { NaverMapView, NaverMapMarkerOverlay } from '@mj-studio/react-native-nav
1616
function MapWithMarker() {
1717
return (
1818
<NaverMapView style={{ flex: 1 }}>
19-
<NaverMapMarkerOverlay // [!code highlight]
20-
latitude={37.5665} // [!code highlight]
21-
longitude={126.9780} // [!code highlight]
22-
caption={{ text: 'Seoul City Hall' }} // [!code highlight]
23-
onTap={() => console.log('Marker tapped')} // [!code highlight]
24-
/> // [!code highlight]
19+
<NaverMapMarkerOverlay // [!code highlight:6]
20+
latitude={37.5665}
21+
longitude={126.9780}
22+
caption={{ text: 'Seoul City Hall' }}
23+
onTap={() => console.log('Marker tapped')}
24+
/>
2525
</NaverMapView>
2626
);
2727
}
@@ -38,3 +38,7 @@ function MapWithMarker() {
3838
`CaptionType`
3939

4040
<AutoTypeTable path="../src/component/NaverMapMarkerOverlay.tsx" name="CaptionType" />
41+
42+
`SubCaptionType`
43+
44+
<AutoTypeTable path="../src/component/NaverMapMarkerOverlay.tsx" name="SubCaptionType" />

docs/content/docs/components/overlays/naver-map-multi-path-overlay.mdx

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -16,32 +16,32 @@ import { NaverMapView, NaverMapMultiPathOverlay } from '@mj-studio/react-native-
1616
function MapWithMultiPath() {
1717
return (
1818
<NaverMapView style={{ flex: 1 }}>
19-
<NaverMapMultiPathOverlay // [!code highlight]
20-
width={40} // [!code highlight]
21-
patternInterval={120} // [!code highlight]
22-
progress={0.5} // [!code highlight]
23-
outlineWidth={10} // [!code highlight]
24-
patternImage={{ symbol: 'blue' }} // [!code highlight]
25-
pathParts={[ // [!code highlight]
26-
{ // [!code highlight]
27-
coords: [ // [!code highlight]
28-
{ latitude: 37.5, longitude: 126.9 }, // [!code highlight]
29-
{ latitude: 37.51, longitude: 126.91 }, // [!code highlight]
30-
{ latitude: 37.52, longitude: 126.92 }, // [!code highlight]
31-
], // [!code highlight]
32-
color: '#ff0000', // [!code highlight]
33-
}, // [!code highlight]
34-
{ // [!code highlight]
35-
coords: [ // [!code highlight]
36-
{ latitude: 37.52, longitude: 126.92 }, // [!code highlight]
37-
{ latitude: 37.53, longitude: 126.93 }, // [!code highlight]
38-
{ latitude: 37.54, longitude: 126.94 }, // [!code highlight]
39-
], // [!code highlight]
40-
color: '#00ff00', // [!code highlight]
41-
}, // [!code highlight]
42-
]} // [!code highlight]
43-
onTap={() => console.log('Multi path tapped')} // [!code highlight]
44-
/> // [!code highlight]
19+
<NaverMapMultiPathOverlay // [!code highlight:25]
20+
width={40}
21+
patternInterval={120}
22+
progress={0.5}
23+
outlineWidth={10}
24+
patternImage={{ symbol: 'blue' }}
25+
pathParts={[
26+
{
27+
coords: [
28+
{ latitude: 37.5, longitude: 126.9 },
29+
{ latitude: 37.51, longitude: 126.91 },
30+
{ latitude: 37.52, longitude: 126.92 },
31+
],
32+
color: '#ff0000',
33+
},
34+
{
35+
coords: [
36+
{ latitude: 37.52, longitude: 126.92 },
37+
{ latitude: 37.53, longitude: 126.93 },
38+
{ latitude: 37.54, longitude: 126.94 },
39+
],
40+
color: '#00ff00',
41+
},
42+
]}
43+
onTap={() => console.log('Multi path tapped')}
44+
/>
4545
</NaverMapView>
4646
);
4747
}

docs/content/docs/components/overlays/naver-map-path-overlay.mdx

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,19 @@ import { NaverMapView, NaverMapPathOverlay } from '@mj-studio/react-native-naver
1616
function MapWithPath() {
1717
return (
1818
<NaverMapView style={{ flex: 1 }}>
19-
<NaverMapPathOverlay // [!code highlight]
20-
coords={[ // [!code highlight]
21-
{ latitude: 37.5, longitude: 126.9 }, // [!code highlight]
22-
{ latitude: 37.51, longitude: 126.91 }, // [!code highlight]
23-
{ latitude: 37.52, longitude: 126.92 }, // [!code highlight]
24-
]} // [!code highlight]
25-
width={8} // [!code highlight]
26-
color={'white'} // [!code highlight]
27-
progress={0.5} // [!code highlight]
28-
passedColor={'black'} // [!code highlight]
29-
outlineWidth={1} // [!code highlight]
30-
onTap={() => console.log('Path tapped')} // [!code highlight]
31-
/> // [!code highlight]
19+
<NaverMapPathOverlay // [!code highlight:12]
20+
coords={[
21+
{ latitude: 37.5, longitude: 126.9 },
22+
{ latitude: 37.51, longitude: 126.91 },
23+
{ latitude: 37.52, longitude: 126.92 },
24+
]}
25+
width={8}
26+
color={'white'}
27+
progress={0.5}
28+
passedColor={'black'}
29+
outlineWidth={1}
30+
onTap={() => console.log('Path tapped')}
31+
/>
3232
</NaverMapView>
3333
);
3434
}

docs/content/docs/components/overlays/naver-map-polygon-overlay.mdx

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@ import { NaverMapView, NaverMapPolygonOverlay } from '@mj-studio/react-native-na
1616
function MapWithPolygon() {
1717
return (
1818
<NaverMapView style={{ flex: 1 }}>
19-
<NaverMapPolygonOverlay // [!code highlight]
20-
coords={[ // [!code highlight]
21-
{ latitude: 37.5, longitude: 126.9 }, // [!code highlight]
22-
{ latitude: 37.51, longitude: 126.91 }, // [!code highlight]
23-
{ latitude: 37.52, longitude: 126.9 }, // [!code highlight]
24-
{ latitude: 37.51, longitude: 126.89 }, // [!code highlight]
25-
]} // [!code highlight]
26-
color={'#00ff0033'} // [!code highlight]
27-
outlineColor={'#00ff00'} // [!code highlight]
28-
outlineWidth={2} // [!code highlight]
29-
onTap={() => console.log('Polygon tapped')} // [!code highlight]
30-
/> // [!code highlight]
19+
<NaverMapPolygonOverlay // [!code highlight:11]
20+
coords={[
21+
{ latitude: 37.5, longitude: 126.9 },
22+
{ latitude: 37.51, longitude: 126.91 },
23+
{ latitude: 37.52, longitude: 126.9 },
24+
{ latitude: 37.51, longitude: 126.89 },
25+
]}
26+
color={'#00ff0033'}
27+
outlineColor={'#00ff00'}
28+
outlineWidth={2}
29+
onTap={() => console.log('Polygon tapped')}
30+
/>
3131
</NaverMapView>
3232
);
3333
}

docs/content/docs/components/overlays/naver-map-polyline-overlay.mdx

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ import { NaverMapView, NaverMapPolylineOverlay } from '@mj-studio/react-native-n
1616
function MapWithPolyline() {
1717
return (
1818
<NaverMapView style={{ flex: 1 }}>
19-
<NaverMapPolylineOverlay // [!code highlight]
20-
coords={[ // [!code highlight]
21-
{ latitude: 37.5, longitude: 126.9 }, // [!code highlight]
22-
{ latitude: 37.51, longitude: 126.91 }, // [!code highlight]
23-
{ latitude: 37.52, longitude: 126.92 }, // [!code highlight]
24-
]} // [!code highlight]
25-
width={5} // [!code highlight]
26-
color={'#ff0000'} // [!code highlight]
27-
onTap={() => console.log('Polyline tapped')} // [!code highlight]
28-
/> // [!code highlight]
19+
<NaverMapPolylineOverlay // [!code highlight:9]
20+
coords={[
21+
{ latitude: 37.5, longitude: 126.9 },
22+
{ latitude: 37.51, longitude: 126.91 },
23+
{ latitude: 37.52, longitude: 126.92 },
24+
]}
25+
width={5}
26+
color={'#ff0000'}
27+
onTap={() => console.log('Polyline tapped')}
28+
/>
2929
</NaverMapView>
3030
);
3131
}

0 commit comments

Comments
 (0)