export interface PolygonEditorState {
    address: string;
    keyWord: string;
    promptsVisible: boolean;
    statisticsVisible: boolean;
    suggestsVisible: boolean;
    lineDataVisible: boolean;
    resultVisible: boolean;
    promptHtml: string;
    statisticsHtml: string;
    suggestsHtml: string;
    lineDataHtml: string;
    searchResultHtml: string;
    pageId: number;
    poi: Record<string, any>;
    itemPolygon: any;
    marker: any;
    map: any;
    localsearch: any;
    box: boolean;
    oldPoi: Record<string, any>;
    loading: boolean;
    allData: Record<string, any>;
    oldAllData: Record<string, any>;
    polyEditor: any;
    currentPolygon: any;
}
