src/app/component/amap/amap.config.ts
Properties |
|
| Optional apiKey |
Type : string
|
|
Defined in src/app/component/amap/amap.config.ts:11
|
| Optional apiVersion |
Type : string
|
Default value : '1.4.5'
|
|
Defined in src/app/component/amap/amap.config.ts:12
|
| Optional urlPath |
Type : string
|
Default value : '//webapi.amap.com/maps'
|
|
Defined in src/app/component/amap/amap.config.ts:13
|
import { ViewContainerRef, InjectionToken } from '@angular/core';
export const STBUI_AMAP_DATA = new InjectionToken<any>('StbuiAmapData');
export class AmapConfig {
apiKey?: string;
apiVersion?: string = '1.4.5';
urlPath?: string = '//webapi.amap.com/maps';
}