ng-azure-maps
Version:
Angular wrapper for Azure Maps
13 lines (12 loc) • 415 B
TypeScript
import { InjectionToken } from '@angular/core';
import { AuthenticationOptions } from 'azure-maps-control';
import { IRetryOptions } from 'azure-maps-rest';
export declare const AZUREMAPS_CONFIG: InjectionToken<unknown>;
/**
* Configuration of the Azure Maps
*/
export declare class AzureMapsConfiguration {
authOptions: AuthenticationOptions;
pipelineRetryOptions?: IRetryOptions;
domain?: string;
}