Skip to content

Commit b336ee1

Browse files
committed
docs: remove duplicated description
1 parent 908b141 commit b336ee1

2 files changed

Lines changed: 18 additions & 18 deletions

File tree

docs/src/content/docs/docs/api/google-map-api-loader.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ function App() {
5050
| onSuccess | `(core: google.maps.CoreLibrary) => void` | callback for loading success |
5151
| onFailure | `(reason: unknown) => void` | callback for loading failure |
5252
| v | `string` | Please refer to the <a href='https://developers.google.com/maps/documentation/javascript/load-maps-js-api#optional_parameters' target='_blank' rel='noreferrer'>official documentation</a>. |
53-
| libraries | `string \| string[]` | Please refer to the <a href='https://developers.google.com/maps/documentation/javascript/load-maps-js-api#optional_parameters' target='_blank' rel='noreferrer'>official documentation</a>. |
54-
| language | `string` | Please refer to the <a href='https://developers.google.com/maps/documentation/javascript/load-maps-js-api#optional_parameters' target='_blank' rel='noreferrer'>official documentation</a>. |
55-
| region | `string` | Please refer to the <a href='https://developers.google.com/maps/documentation/javascript/load-maps-js-api#optional_parameters' target='_blank' rel='noreferrer'>official documentation</a>. |
56-
| authReferrerPolicy | `string` | Please refer to the <a href='https://developers.google.com/maps/documentation/javascript/load-maps-js-api#optional_parameters' target='_blank' rel='noreferrer'>official documentation</a>. |
53+
| libraries | `string \| string[]` | ... |
54+
| language | `string` | ... |
55+
| region | `string` | ... |
56+
| authReferrerPolicy | `string` | ... |
5757

5858
### Loading Status
5959

docs/src/content/docs/docs/api/marker.mdx

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -34,20 +34,20 @@ function MyMap() {
3434
| lng | `number` | longitude |
3535
| draggable | `boolean` | flag for draggable feature |
3636
| anchorPoint | `google.maps.Point` | Please refer to the <a href='https://developers.google.com/maps/documentation/javascript/reference/marker#MarkerOptions' target='_blank' rel='noreferrer'>official documentation</a>. |
37-
| animation | `google.maps.Animation` | Please refer to the <a href='https://developers.google.com/maps/documentation/javascript/reference/marker#MarkerOptions' target='_blank' rel='noreferrer'>official documentation</a>. |
38-
| clickable | `boolean` | Please refer to the <a href='https://developers.google.com/maps/documentation/javascript/reference/marker#MarkerOptions' target='_blank' rel='noreferrer'>official documentation</a>. |
39-
| collisionBehavior | `string` | Please refer to the <a href='https://developers.google.com/maps/documentation/javascript/reference/marker#MarkerOptions' target='_blank' rel='noreferrer'>official documentation</a>. |
40-
| crossOnDrag | `boolean` | Please refer to the <a href='https://developers.google.com/maps/documentation/javascript/reference/marker#MarkerOptions' target='_blank' rel='noreferrer'>official documentation</a>. |
41-
| cursor | `string` | Please refer to the <a href='https://developers.google.com/maps/documentation/javascript/reference/marker#MarkerOptions' target='_blank' rel='noreferrer'>official documentation</a>. |
42-
| draggable | `boolean` | Please refer to the <a href='https://developers.google.com/maps/documentation/javascript/reference/marker#MarkerOptions' target='_blank' rel='noreferrer'>official documentation</a>. |
43-
| icon | `string \| google.maps.Icon \|google.maps.Symbol` | Please refer to the <a href='https://developers.google.com/maps/documentation/javascript/reference/marker#MarkerOptions' target='_blank' rel='noreferrer'>official documentation</a>. |
44-
| label | `string \| google.maps.MarkerLabel` | Please refer to the <a href='https://developers.google.com/maps/documentation/javascript/reference/marker#MarkerOptions' target='_blank' rel='noreferrer'>official documentation</a>. |
45-
| opacity | `number` | Please refer to the <a href='https://developers.google.com/maps/documentation/javascript/reference/marker#MarkerOptions' target='_blank' rel='noreferrer'>official documentation</a>. |
46-
| optimized | `boolean` | Please refer to the <a href='https://developers.google.com/maps/documentation/javascript/reference/marker#MarkerOptions' target='_blank' rel='noreferrer'>official documentation</a>. |
47-
| shape | `google.maps.MarkerShape` | Please refer to the <a href='https://developers.google.com/maps/documentation/javascript/reference/marker#MarkerOptions' target='_blank' rel='noreferrer'>official documentation</a>. |
48-
| title | `string` | Please refer to the <a href='https://developers.google.com/maps/documentation/javascript/reference/marker#MarkerOptions' target='_blank' rel='noreferrer'>official documentation</a>. |
49-
| visible | `boolean` | Please refer to the <a href='https://developers.google.com/maps/documentation/javascript/reference/marker#MarkerOptions' target='_blank' rel='noreferrer'>official documentation</a>. |
50-
| zIndex | `number` | Please refer to the <a href='https://developers.google.com/maps/documentation/javascript/reference/marker#MarkerOptions' target='_blank' rel='noreferrer'>official documentation</a>. |
37+
| animation | `google.maps.Animation` | ... |
38+
| clickable | `boolean` | ... |
39+
| collisionBehavior | `string` | ... |
40+
| crossOnDrag | `boolean` | ... |
41+
| cursor | `string` | ... |
42+
| draggable | `boolean` | ... |
43+
| icon | `string \| google.maps.Icon \|google.maps.Symbol` | ... |
44+
| label | `string \| google.maps.MarkerLabel` | ... |
45+
| opacity | `number` | ... |
46+
| optimized | `boolean` | ... |
47+
| shape | `google.maps.MarkerShape` | ... |
48+
| title | `string` | ... |
49+
| visible | `boolean` | ... |
50+
| zIndex | `number` | ... |
5151
| onAnimationChanged | `(marker: google.maps.Marker) => void` | callback for `animation_changed` event. Please refer to the <a href='https://developers.google.com/maps/documentation/javascript/reference/marker#Marker-Events' target='_blank' rel='noreferrer'>official documentation</a>. |
5252
| onClick | `(marker: google.maps.Marker, event: google.maps.MapMouseEvent) => void` | callback for `click` event. Please refer to the <a href='https://developers.google.com/maps/documentation/javascript/reference/marker#Marker-Events' target='_blank' rel='noreferrer'>official documentation</a>. |
5353
| onClickableChanged | `(marker: google.maps.Marker) => void` | callback for `clickable_changed` event. Please refer to the <a href='https://developers.google.com/maps/documentation/javascript/reference/marker#Marker-Events' target='_blank' rel='noreferrer'>official documentation</a>. |

0 commit comments

Comments
 (0)