ultimap
Version:
Universal map api
17 lines (14 loc) • 381 B
text/typescript
export class Api {
/**
* Doesnt used
*/
public static load() {
const script = document.createElement('script');
script.type = 'text/javascript';
script.src = 'https://maps.googleapis.com/maps/api/js';
document.head.appendChild(script);
}
public static get google() {
return (window as any).google as any;
}
}