import { Bounds, Label, Point } from '@ngageoint/grid-js'; import { MGRS } from '../MGRS'; import { GridType } from './GridType'; /** * MGRS Grid Label */ export declare class GridLabel extends Label { /** * Grid type */ private gridType; /** * MGRS coordinate */ private coordinate; /** * Constructor * * @param name * name * @param center * center point * @param bounds * bounds * @param gridType * grid type * @param coordinate * MGRS coordinate */ constructor(name: string, center: Point, bounds: Bounds, gridType: GridType, coordinate: MGRS); /** * Get the grid type * * @return grid type */ getGridType(): GridType; /** * Set the grid type * * @param gridType * grid type */ setGridType(gridType: GridType): void; /** * Get the MGRS coordinate * * @return MGRS coordinate */ getCoordinate(): MGRS; /** * Set the MGRS coordinate * * @param coordinate * MGRS coordinate */ setCoordinate(coordinate: MGRS): void; } //# sourceMappingURL=GridLabel.d.ts.map