A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.npmjs.com/package/google-maps below:

google-maps - npm

google-maps-loader

Async loader for google maps api.

Version >= 4.0.0: Typescript definitions are published with this package. Install @types/google-maps for previous versions.

This module does not change original google maps api in any way. It just provide easy way to load and use this API asynchronously.

Browser only!

Installation
$ npm install --save google-maps

or with Pika:

<script type="module">

    import { Loader } from 'https://cdn.pika.dev/google-maps';

    

</script> 

Usage

import {Loader, LoaderOptions} from 'google-maps';

 

const options: LoaderOptions = {};

const loader = new Loader('my-api-key', options);

 

const google = await loader.load();

const map = new google.maps.Map(document.getElementById('map'), {

    center: {lat: -34.397, lng: 150.644},

    zoom: 8,

});

Without await/async:

loader.load().then(function (google) {

    const map = new google.maps.Map(document.getElementById('map'), {

        center: {lat: -34.397, lng: 150.644},

        zoom: 8,

    });

});

Options Changelog list

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4