File

src/lib/services/maps-api-loader/maps-api-loader.ts

Index

Properties
Methods

Methods

Public Abstract configure
configure(config: any)
Parameters :
Name Type Optional
config any No
Returns : void
Public Abstract load
load()
Returns : Promise<void>

Properties

Protected Optional _document
Type : Document
Protected Optional _window
Type : Window | null
import { Injectable } from '@angular/core';

@Injectable()
export abstract class MapsAPILoader {
  protected _window?: Window | null;
  protected _document?: Document;
  public abstract load(): Promise<void>;
  public abstract configure(config: any): void;
}

results matching ""

    No results matching ""