mapillary-js
Version:
A WebGL interactive street imagery library
30 lines (25 loc) • 514 B
text/typescript
export enum CameraVisualizationMode {
/**
* Cameras are hidden.
*/
Hidden,
/**
* Cameras are shown, all with the same color.
*/
Homogeneous,
/**
* Cameras are shown with colors based on the
* their clusters.
*/
Cluster,
/**
* Cameras are shown with colors based on the
* their connected components.
*/
ConnectedComponent,
/**
* Cameras are shown, with colors based on the
* their sequence.
*/
Sequence,
}