theta-ble-client-react-native
Version:
This library provides a way to control RICOH THETA using
16 lines (15 loc) • 348 B
text/typescript
/**
* GPS information
*/
export interface GpsInfo {
/** Latitude (-90.000000 – 90.000000) */
lat?: number;
/** Longitude (-180.000000 – 180.000000) */
lng?: number;
/** Altitude (meters) */
altitude?: number;
/** Location information acquisition time */
dateTimeZone?: string;
/** Geodetic reference */
datum?: string;
};