comp-poi-picker.component.d.ts 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. import { EventEmitter, AfterViewInit, ElementRef } from '@angular/core';
  2. import Parse from "parse";
  3. import { IonModal } from '@ionic/angular';
  4. import * as i0 from "@angular/core";
  5. export declare class CompPoiPickerComponent implements AfterViewInit {
  6. container: ElementRef;
  7. panel: ElementRef;
  8. _name: string;
  9. get name(): string;
  10. set name(v: string);
  11. nameChange: EventEmitter<string>;
  12. _address: string;
  13. get address(): string;
  14. set address(v: string);
  15. addressChange: EventEmitter<string>;
  16. _location: Parse.GeoPoint;
  17. get location(): Parse.GeoPoint;
  18. set location(v: Parse.GeoPoint);
  19. locationChange: EventEmitter<Parse.GeoPoint>;
  20. amap: {
  21. securityJsCode: string;
  22. key: string;
  23. };
  24. constructor();
  25. initaMapConfig(): Promise<void>;
  26. /**
  27. * 弹窗效果区域
  28. */
  29. isModalOpen: boolean;
  30. modal: IonModal;
  31. cancel(): void;
  32. confirm(): void;
  33. onWillDismiss(event: Event): void;
  34. openModal(): void;
  35. /**
  36. * 高德地图插件区域
  37. */
  38. AMap: any;
  39. map: any;
  40. ngAfterViewInit(): void;
  41. initMap(): void;
  42. createMap(): Promise<void>;
  43. goCurrentCenter(): void;
  44. searchByAddress(): void;
  45. centerMarker: any;
  46. createCenterMarker(): void;
  47. static ɵfac: i0.ɵɵFactoryDeclaration<CompPoiPickerComponent, never>;
  48. 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>;
  49. }