We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Maps3DLibrary
1 parent c71c8a3 commit a938c1eCopy full SHA for a938c1e
src/index.ts
@@ -22,6 +22,7 @@ export const DEFAULT_ID = "__googleMapsScriptId";
22
export type Library =
23
| "core"
24
| "maps"
25
+ | "maps3d"
26
| "places"
27
| "geocoding"
28
| "routes"
@@ -448,6 +449,7 @@ export class Loader {
448
449
*/
450
public importLibrary(name: "core"): Promise<google.maps.CoreLibrary>;
451
public importLibrary(name: "maps"): Promise<google.maps.MapsLibrary>;
452
+ public importLibrary(name: "maps3d"): Promise<google.maps.Maps3DLibrary>;
453
public importLibrary(name: "places"): Promise<google.maps.PlacesLibrary>;
454
public importLibrary(
455
name: "geocoding"
0 commit comments