mapillary-js
Version:
WebGL JavaScript library for displaying street level imagery from mapillary.com
21 lines (16 loc) • 427 B
text/typescript
import {IComponentConfiguration} from "../../Component";
export interface IRouteInfoKey {
key: string;
description: string;
}
export interface IRoutePath {
sequenceKey: string;
startKey: string;
stopKey: string;
infoKeys: IRouteInfoKey[];
}
export interface IRouteConfiguration extends IComponentConfiguration {
paths?: IRoutePath[];
playing?: boolean;
}
export default IRouteConfiguration;