UNPKG

@stadiamaps/api

Version:
77 lines 2.15 kB
/** * Stadia Maps Geospatial APIs * The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications. * * The version of the OpenAPI document: 10.0.1 * Contact: support@stadiamaps.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface IsochroneProperties */ export interface IsochroneProperties { /** * * @type {string} * @memberof IsochroneProperties */ fillColor?: string; /** * * @type {number} * @memberof IsochroneProperties */ opacity?: number; /** * * @type {string} * @memberof IsochroneProperties */ fill?: string; /** * * @type {number} * @memberof IsochroneProperties */ fillOpacity?: number; /** * * @type {string} * @memberof IsochroneProperties */ color?: string; /** * * @type {number} * @memberof IsochroneProperties */ contour?: number; /** * * @type {string} * @memberof IsochroneProperties */ metric?: IsochronePropertiesMetricEnum; } /** * @export */ export declare const IsochronePropertiesMetricEnum: { readonly Time: "time"; readonly Distance: "distance"; }; export type IsochronePropertiesMetricEnum = (typeof IsochronePropertiesMetricEnum)[keyof typeof IsochronePropertiesMetricEnum]; /** * Check if a given object implements the IsochroneProperties interface. */ export declare function instanceOfIsochroneProperties(value: object): value is IsochroneProperties; export declare function IsochronePropertiesFromJSON(json: any): IsochroneProperties; export declare function IsochronePropertiesFromJSONTyped(json: any, ignoreDiscriminator: boolean): IsochroneProperties; export declare function IsochronePropertiesToJSON(json: any): IsochroneProperties; export declare function IsochronePropertiesToJSONTyped(value?: IsochroneProperties | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=IsochroneProperties.d.ts.map