UNPKG

mapillary-js

Version:

WebGL JavaScript library for displaying street level imagery from mapillary.com

28 lines (25 loc) 482 B
/** * Interface for the URL options that can be provided to the viewer. * * @interface */ export interface IUrlOptions { /** * Explore host. * * @description Host used for links to the full * mapillary website. * * @default {"www.mapillary.com"} */ exploreHost?: string; /** * Scheme. * * @description Used for all hosts. * * @default {"https"} */ scheme?: string; } export default IUrlOptions;