projects/ngx-amap/src/interfaces/marker-label.interface.ts
        
| Properties | 
| content | 
| content:          | 
| Type : string | 
| Optional | 
| direction | 
| direction:      | 
| Type : AMap.Marker.LabelDirection | 
| Optional | 
| offset | 
| offset:          | 
| Type : IPixel | AMap.Pixel | 
| Optional | 
import { IPixel } from './pixel.interface';
export interface IMarkerLabel {
  content?: string;
  offset?: IPixel | AMap.Pixel;
  direction?: AMap.Marker.LabelDirection;
}