@mappingfactory/sdk-angular
Version:
Angular SDK for Michelin's Navigation and Mapping Services.
15 lines (14 loc) • 698 B
TypeScript
import { RoadSheetWrapper, type RoadsheetOptions } from "@mappingfactory/sdk-js";
import { type Observable } from "rxjs";
import { MFCoreService } from "./mapping-factory.service";
import * as i0 from "@angular/core";
export declare class MFRoadsheetService {
readonly mappingFactoryService: MFCoreService;
private roadsheetSubject;
roadsheet$: Observable<RoadSheetWrapper | null>;
constructor(mappingFactoryService: MFCoreService);
init(options?: Partial<RoadsheetOptions>): Promise<void>;
getInstance(): RoadSheetWrapper | null;
static ɵfac: i0.ɵɵFactoryDeclaration<MFRoadsheetService, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<MFRoadsheetService>;
}