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

google-maps-js-api-loader

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

google-maps-js-api-loader

A lightweight JavaScript library for loading the Google Maps JavaScript API

  • 3.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
81
increased by65.31%
Maintainers
1
Weekly downloads
 
Created
Source

google-maps-loader

Description

Lightweight JavaScript library that simplifies the process of adding Google Maps JavaScript API to web application.

Example

import { GoogleMapsLoader, GoogleMapsLoaderStatus } from "google-maps-loader";

GoogleMapsLoader({
  key: API_KEY,
  // ...some other options
});

if (GoogleMapsLoader.status === GoogleMapsLoaderStatus.LOADED) {
  console.log("google.maps is ready");
}

GoogleMapsLoader.completion.then(() => console.log("google.maps is ready"));

await GoogleMapsLoader.load();

API

GoogleMapsLoader

function GoogleMapsLoader(options: GoogleMapsLoaderOptions): GoogleMapsLoader;

Sets options for a Google Maps JavaScript API script, options must be set before load is executed

GoogleMapsLoaderOptionsDescription
keyYour API key
v?The version of the Google Maps JavaScript API to use
libraries?Array of additional Google Maps JavaScript API libraries to load
language?The language to use. This affects the names of controls, copyright notices, driving directions, and control labels, as well as the responses to service requests. See the list of supported languages
region?The region code to use. This alters the map's behavior based on a given country or territory
auth_referrer_policy?Maps JS customers can configure HTTP Referrer Restrictions in the Cloud Console to limit which URLs are allowed to use a particular API Key. By default, these restrictions can be configured to allow only certain paths to use an API Key. If any URL on the same domain or origin may use the API Key, you can set "origin" to limit the amount of data sent when authorizing requests from the Google Maps JavaScript API. This is available starting in version 3.46. When this parameter is specified and HTTP Referrer Restrictions are enabled on Cloud Console, Google Maps JavaScript API will only be able to load if there is an HTTP Referrer Restriction that matches the current website's domain without a path specified
url?Use a custom url and path to load the Google Maps API script
nonce?Adds nonce attribute to the script
async?Adds async attribute to the script
defer?Adds defer attribute to the script

load

static load(): Promise<void>

Can be called multiple times, only on the first call it starts loading Google Maps JavaScript API script with the given options

Returns completion


status

enum GoogleMapsLoaderStatus {
  NONE, // default value
  LOADING,
  LOADED,
  ERROR,
}

static status: GoogleMapsLoaderStatus

Current status of GoogleMapsLoader


completion

static readonly completion: Promise<void>

Promise of loading

Resolves if load is success

Rejects

  • if Google Maps JavaScript API was loaded outside of this library
  • if no options was set
  • if script loading failed

License

MIT © Krombik

Keywords

FAQs

Package last updated on 21 May 2023

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