UNPKG

@arcgis/core

Version:

ArcGIS Maps SDK for JavaScript: A complete 2D and 3D mapping and data visualization API

22 lines (20 loc) 726 B
import type MapSurroundInfoBase from "./MapSurroundInfoBase.js"; import type { MapSurroundInfoBaseProperties } from "./MapSurroundInfoBase.js"; export interface MapSurroundInfoNorthArrowProperties extends MapSurroundInfoBaseProperties { /** * The type of MapSurroundInfo. * * @default "cim-marker-north-arrow" */ type?: "cim-marker-north-arrow"; } /** The `MapSurroundInfoNorthArrow` class defines a map surround north arrow for printing */ export default class MapSurroundInfoNorthArrow extends MapSurroundInfoBase { constructor(properties?: MapSurroundInfoNorthArrowProperties); /** * The type of MapSurroundInfo. * * @default "cim-marker-north-arrow" */ type: "cim-marker-north-arrow"; }