import { AzureMapsImageryStyle } from "./AzureMapsImageryStyle"; import { IgrGeographicMapImagery } from "./igr-geographic-map-imagery"; import { AzureMapsImagery as AzureMapsImagery_internal } from "./AzureMapsImagery"; /** * UI element class used to display AzureMaps imagery in the GeographicMap. */ export declare class IgrAzureMapsImagery extends IgrGeographicMapImagery { protected createImplementation(): AzureMapsImagery_internal; /** * @hidden */ get i(): AzureMapsImagery_internal; constructor(); /** * Gets or sets the culture name for this tile source. */ get cultureName(): string; set cultureName(v: string); /** * Gets or sets a subscription key required by the Azure Maps imagery service. * For more information see https://learn.microsoft.com/en-us/azure/azure-maps/azure-maps-authentication#shared-key-authentication. */ get apiKey(): string; set apiKey(v: string); /** * Gets or sets the API version used by the Azure Maps imagery service. * For more information see Render API version in https://learn.microsoft.com/en-us/azure/azure-maps/rest-api-azure-maps#latest-release. */ get apiVersion(): string; set apiVersion(v: string); /** * Gets or sets a map style of the Azure Maps imagery tiles. * For example: Road map style. */ get imageryStyle(): AzureMapsImageryStyle; set imageryStyle(v: AzureMapsImageryStyle); /** * Gets or sets a string that specifies which maps to show for geopolitically disputed regions. * For more information see https://learn.microsoft.com/en-us/rest/api/maps/render/get-map-tile#localizedmapview. */ get localizedView(): string; set localizedView(v: string); /** * Gets or sets a specific date and time for the map. * Note that not all tilesets support this option and those that do might have restrictions. * For more information see https://learn.microsoft.com/en-us/rest/api/maps/render/get-map-tile#uri-parameters. */ get timestamp(): Date; set timestamp(v: Date); }