/** * @description 接收地理位置消息 */ import { InMsg } from './InMsg'; export declare class InLocationMsg extends InMsg { private location_X; private location_Y; private scale; private label; private msgId; constructor(toUserName: string, fromUserName: string, createTime: number, msgType: string); get getLocation_X(): string; set setLocation_X(location_X: string); get getLocation_Y(): string; set setLocation_Y(location_Y: string); get getScale(): string; set setScale(scale: string); get getLabel(): string; set setLabel(label: string); get getMsgId(): string; set setMsgId(msgId: string); }