mapillary-js
Version:
A WebGL interactive street imagery library
28 lines (25 loc) • 474 B
text/typescript
/**
* @interface CircleMarkerOptions
*
* Interface that represents the options for configuring a `CircleMarker`.
*/
export interface CircleMarkerOptions {
/**
* The color of the marker.
*
* @default "#fff"
*/
color?: number | string;
/**
* The opacity of the marker.
*
* @default 0.4
*/
opacity?: number;
/**
* The radius of the circle in meters.
*
* @default 1
*/
radius?: number;
}