1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- import { EventEmitter, AfterViewInit, ElementRef } from '@angular/core';
- import Parse from "parse";
- import { IonModal } from '@ionic/angular';
- import * as i0 from "@angular/core";
- export declare class CompPoiPickerComponent implements AfterViewInit {
- container: ElementRef;
- panel: ElementRef;
- _name: string;
- get name(): string;
- set name(v: string);
- nameChange: EventEmitter<string>;
- _address: string;
- get address(): string;
- set address(v: string);
- addressChange: EventEmitter<string>;
- _location: Parse.GeoPoint;
- get location(): Parse.GeoPoint;
- set location(v: Parse.GeoPoint);
- locationChange: EventEmitter<Parse.GeoPoint>;
- constructor();
- /**
- * 弹窗效果区域
- */
- isModalOpen: boolean;
- modal: IonModal;
- cancel(): void;
- confirm(): void;
- onWillDismiss(event: Event): void;
- openModal(): void;
- /**
- * 高德地图插件区域
- */
- AMap: any;
- map: any;
- ngAfterViewInit(): void;
- initMap(): void;
- createMap(): Promise<void>;
- goCurrentCenter(): void;
- searchByAddress(): void;
- centerMarker: any;
- createCenterMarker(): void;
- static ɵfac: i0.ɵɵFactoryDeclaration<CompPoiPickerComponent, never>;
- static ɵcmp: i0.ɵɵComponentDeclaration<CompPoiPickerComponent, "fm-map-poi-picker", never, { "_name": { "alias": "name"; "required": false; }; "_address": { "alias": "address"; "required": false; }; "_location": { "alias": "location"; "required": false; }; }, { "nameChange": "nameChange"; "addressChange": "addressChange"; "locationChange": "locationChange"; }, never, never, false, never>;
- }
|