Skip to content

Instantly share code, notes, and snippets.

@LarsBergqvist
Created February 2, 2020 11:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LarsBergqvist/2e385efd52d8f62885bfd404750f76d0 to your computer and use it in GitHub Desktop.
Save LarsBergqvist/2e385efd52d8f62885bfd404750f76d0 to your computer and use it in GitHub Desktop.
Service that uses load-google-maps-api
import { Injectable } from '@angular/core';
import * as loadGoogleMapsApi from 'load-google-maps-api';
@Injectable()
class GoogleMapsService {
constructor() { }
load(googleAPIKey: string): any {
return loadGoogleMapsApi({ key: googleAPIKey });
}
}
export { GoogleMapsService };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment