Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

load-google-maps-api

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

load-google-maps-api

A thin, Promise-returning helper for loading the Google Maps JavaScript API.

  • 1.0.1
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

load-google-maps-api npm Version Build Status

A thin, Promise-returning helper for loading the Google Maps JavaScript API.

Usage

const loadGoogleMapsAPI = require('load-google-maps-api')

loadGoogleMapsAPI().then(function(googleMaps) {
  console.log(googleMaps) //=> Object { Animation: Object, ...
}).catch((err) => {
  console.error(err)
})

Read the source to understand how this works.

N.B. Just like the Google Maps API itself, this module is client-side only.

Why

Without this module, you would need to specify a named global callback, and pass said callback’s name as a parameter in the script tag’s src. For example:

<script>
window.googleMapsOnLoad = () => {
  // `google.maps` available here
}
</script>
<script async defer src="https://maps.googleapis.com/maps/api/js?callback=googleMapsOnLoad"></script>

This module abstracts this ceremony away, and fits better with Browserify or Webpack.

API

const loadGoogleMapsAPI = require('load-google-maps-api')

loadGoogleMapsAPI([options])

Returns a Promise. (See Usage.)

  • Fulfilled if load was successful. The fulfilled callback is passed the google.maps object.
  • Rejected if we weren’t able to load the Google Maps API after options.timeout.

options is an optional object literal:

KeyDescriptionDefault
channelClient usage reporting channelundefined
clientClient IDundefined
keyYour API keyundefined
languageLanguageundefined
librariesSupplemental libraries to load[]
regionRegionundefined
timeoutTime in milliseconds before rejecting the promise10000
vAPI versionundefined

Installation

Install via yarn:

$ yarn add load-google-maps-api

Or npm:

$ npm install --save load-google-maps-api

License

MIT

FAQs

Package last updated on 12 Dec 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc