UNPKG

@stadiamaps/api

Version:
39 lines 1.26 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.1.2 * 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 Coordinate */ export interface Coordinate { /** * The latitude of a point in the shape. * @type {number} * @memberof Coordinate */ lat: number; /** * The longitude of a point in the shape. * @type {number} * @memberof Coordinate */ lon: number; } /** * Check if a given object implements the Coordinate interface. */ export declare function instanceOfCoordinate(value: object): value is Coordinate; export declare function CoordinateFromJSON(json: any): Coordinate; export declare function CoordinateFromJSONTyped(json: any, ignoreDiscriminator: boolean): Coordinate; export declare function CoordinateToJSON(json: any): Coordinate; export declare function CoordinateToJSONTyped(value?: Coordinate | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=Coordinate.d.ts.map