projects/ngx-amap/src/interfaces/icon.interface.ts
Properties |
|
| image |
image:
|
Type : string
|
| Optional |
| imageOffset |
imageOffset:
|
Type : IPixel | AMap.Pixel
|
| Optional |
| imageSize |
imageSize:
|
Type : ISize | AMap.SizeValue
|
| Optional |
| size |
size:
|
Type : ISize | AMap.SizeValue
|
| Optional |
import { ISize } from './size.interface';
import { IPixel } from './pixel.interface';
export interface IIcon {
size?: ISize | AMap.SizeValue;
imageOffset?: IPixel | AMap.Pixel;
image?: string;
imageSize?: ISize | AMap.SizeValue;
}