ngx-amap icon indicating copy to clipboard operation
ngx-amap copied to clipboard

CloudDataSearch 云数据检索服务

Open qikong333 opened this issue 6 years ago • 1 comments

请问呢下CloudDataSearch 云数据检索服务有集成在里面 吗???

qikong333 avatar Apr 04 '18 08:04 qikong333

@qikong333 目前还没没有封装成service,但是你仍然可以原生一样地正常使用这个服务:

需要在map的ready事件后进行处理,例子:

import { Component, OnInit } from '@angular/core';

declare const AMap: any;

@Component({
  selector: 'app-demo',
  template: '<ngx-amap class="demo-map" (ready)="onMapReady($event)"></ngx-amap>'
})
export class DemoComponent implements OnInit {

  constructor() { }

  ngOnInit() {
  }

  onMapReady(map: any) {
    AMap.plugin('AMap.CloudDataLayer', () => {
        //TODO: 云图图层的初始化和添加等
    })
  }
}

xieziyu avatar Apr 09 '18 02:04 xieziyu