wdpapi
Version:
51WORLD WdpApi is a set of programming interfaces developed by JavaScript that is responsible for negotiating between web pages and cloud rendering platforms. Supported by 51Cloud rendering platform, it enables the users to create any HTML5 UI element on
34 lines (33 loc) • 963 B
TypeScript
import { EntityEidType, CoordType, RotatorType, ScaleType } from '../data-type';
/**
* @interface GeoReferenceAtomType
* @param {string} settingMode
* @param {string} coordType
* @param {string} sceneCRS
* @param {string} apiCRS
* @param {CoordType} originLocation
* @param {RotatorType} originRotation
* @param {ScaleType} originScale
*/
export interface GeoReferenceAtomType {
settingMode: string;
coordType: string;
sceneCRS: string;
apiCRS: string;
originLocation: CoordType;
originRotation: RotatorType;
originScale: ScaleType;
}
/**
* @interface GeoReferenceType
* @extends Partial<EntityEidType>,Partial<GeoReferenceAtomType>
*/
export interface GeoReferenceType extends Partial<EntityEidType>, Partial<GeoReferenceAtomType> {
}
/**
* @interface IGenerate
* @param {Partial<GeoReferenceAtomType>} GeoReferenceAtom (optional)
*/
export interface IGenerate {
GeoReferenceAtom?: Partial<GeoReferenceAtomType>;
}