diff --git a/lib/components/marker.component.ts b/lib/components/marker.component.ts index eaa9129..b947eae 100644 --- a/lib/components/marker.component.ts +++ b/lib/components/marker.component.ts @@ -58,35 +58,35 @@ export default defineComponent({ */ offset: [Object, Array] as PropType, /** - * A string indicating the part of the Marker that should be positioned closest to the coordinate set via Marker#setLngLat. Options are 'center', 'top', 'bottom', 'left', 'right', 'top-left', 'top-right', 'bottom-left', and 'bottom-right'. Default Value ts 'center' + * A string indicating the part of the Marker that should be positioned closest to the coordinate set via Marker#setLngLat. Options are 'center', 'top', 'bottom', 'left', 'right', 'top-left', 'top-right', 'bottom-left', and 'bottom-right'. Default Value 'center' */ anchor: String as PropType, /** - * The color to use for the default marker if options.element is not provided. The default is light blue. Default Value ts '#3FB1CE' + * The color to use for the default marker if options.element is not provided. The default is light blue. Default Value '#3FB1CE' */ color: String as PropType, /** - * A boolean indicating whether or not a marker is able to be dragged to a new position on the map. Default Value ts false + * A boolean indicating whether or not a marker is able to be dragged to a new position on the map. Default Value false */ draggable: Boolean as PropType, /** - * The max number of pixels a user can shift the mouse pointer during a click on the marker for it to be considered a valid click (as opposed to a marker drag). The default is to inherit map's clickTolerance. Default Value ts 0 + * The max number of pixels a user can shift the mouse pointer during a click on the marker for it to be considered a valid click (as opposed to a marker drag). The default is to inherit map's clickTolerance. Default Value 0 */ clickTolerance: Number as PropType, /** - * The rotation angle of the marker in degrees, relative to its respective rotationAlignment setting. A positive value will rotate the marker clockwise. Default Value ts 0 + * The rotation angle of the marker in degrees, relative to its respective rotationAlignment setting. A positive value will rotate the marker clockwise. Default Value 0 */ rotation: Number as PropType, /** - * map aligns the Marker's rotation relative to the map, maintaining a bearing as the map rotates. viewport aligns the Marker's rotation relative to the viewport, agnostic to map rotations. auto is equivalent to viewport. Default Value ts 'auto' + * map aligns the Marker's rotation relative to the map, maintaining a bearing as the map rotates. viewport aligns the Marker's rotation relative to the viewport, agnostic to map rotations. auto is equivalent to viewport. Default Value 'auto' */ rotationAlignment: String as PropType<"map" | "viewport" | "auto">, /** - * map aligns the Marker to the plane of the map. viewport aligns the Marker to the plane of the viewport. auto automatically matches the value of rotationAlignment. Default Value ts 'auto' + * map aligns the Marker to the plane of the map. viewport aligns the Marker to the plane of the viewport. auto automatically matches the value of rotationAlignment. Default Value 'auto' */ pitchAlignment: String as PropType<"map" | "viewport" | "auto">, /** - * The scale to use for the default marker if options.element is not provided. The default scale corresponds to a height of 41px and a width of 27px. Default Value ts 1 + * The scale to use for the default marker if options.element is not provided. The default scale corresponds to a height of 41px and a width of 27px. Default Value 1 */ scale: Number as PropType, },