/** A coordinate on the earth's surface. "x" is longitude and "y" is latitude. */ export interface ICoordinate { /** Gets or sets specify x for the longitude. */ x: number; /** Gets or sets specify y for the latitude. */ y: number; } //# sourceMappingURL=coordinate.d.ts.map