Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
google-maps-promise
Advanced tools
Wrapper for asynchronously load Google Maps API with Promise.
Wrapper for asynchronously load Google Maps API with Promise.
This module based on ideas from package google-maps
but with another API based on Promises.
It doesn’t change original Google Maps API ans just provide easy way to load
and use this API asynchronously.
For bundlers and other NPM-based environments:
npm install --save-dev google-maps-promise
Types for TypeScript are included.
UMD is default for this package, so just use something like:
import {load, urlSettings} from 'google-maps-promise';
// or
const {load, urlSettings} = require( 'google-maps-promise' );
For using directly in browser (import with <script>
tag in HTML-file):
You can use AMD or GoogleMapsPromise
global variable.
If you target to ES5 browsers you should use some polyfill for Promise
and Object.assign
.
Package contain module
property for use with ES2015 module bundlers
(like Rollup and Webpack 2).
If you don’t want to use transplitted to ES5 code, you can use included ES2015 version.
You can directly import this version:
import {load, urlSettings} from 'google-maps-promise/es2015';
Or specify alias in Webpack config:
{
// …
resolve: {
extensions: ['.ts', '.tsx', '.js'],
alias: {
'google-maps-promise': 'google-maps-promise/es2015',
},
},
};
import {load, urlSettings} from 'google-maps-promise';
async function main(): Promise<void>
{
urlSettings.key = '__YOUR_API_KEY__';
const Maps = await load();
// Or you can use `new google.maps.Map` instead
new Maps.Map(
document.getElementById( 'map' ),
{
// Your options…
},
);
}
Without async/await and TypeScript:
import {load, urlSettings} from 'google-maps-promise';
urlSettings.key = '__YOUR_API_KEY__';
load()
.then(
( Maps ) =>
{
// Or you can use `new google.maps.Map` instead
new Maps.Map(
document.getElementById( 'map' ),
{
// Your Google Maps options…
},
);
}
);
The load()
function returns the same Promise for every call, so you can use
it in different parts of your code.
For example, in some other module you can create a location point:
import {load} from 'google-maps-promise';
async function main(): Promise<void>
{
const Maps = await load();
const location = new Maps.LatLng( 0, 0 );
// Use it somehow…
}
Promise is rejected when script can’t be loaded, so you can catch this error
with try/catch
, when you use async/await
, or with .catch()
in promise
chain.
import {load, urlSettings} from 'google-maps-promise';
async function main(
element: HTMLElement,
options: google.maps.MapOptions,
): Promise<void>
{
urlSettings.key = '__YOUR_API_KEY__';
try
{
const Maps = await load();
new Maps.Map( element, options );
}
catch ( error )
{
console.error( error );
// Fallback to image
const image = new Image();
image.src = '/images/map.png';
image.alt = 'Map';
element.appendChild( image );
}
}
You can specify options thrue urlSettings
object.
Base URL address to Google Maps JS API (string
).
urlSettings.url = 'https://maps.googleapis.com/maps/api/js';
API key (string | null
).
urlSettings.key = 'qwertyuiopasdfghjklzxcvbnm';
Client ID for Premium Plan (string | null
);
urlSettings.client = 'yourclientkey';
Required version of the API (string | null
).
By default version is set so you should set this property to null
if you want
to always use the latest version. This will not work, if you specify the
client
property — even when you set it to null
, module will use value
from defaultUrlSettings
object (it defined as read only).
urlSettings.version = '3.27';
Application channel for Premium Plan (string | null
).
urlSettings.channel = 'channel';
Additional libraries to load (string[]
).
urlSettings.libraries = ['geometry', 'places'];
Force map language (string | null
).
urlSettings.language = 'ru';
Biasing API results towards the region (string | null
).
urlSettings.region = 'RU';
Name of callback function in global space (string
).
urlSettings.windowCallbackName = '__google_maps_api_provider_initializator__';
For testing purposes is good to remove all google objects and restore loader to its original state.
import {release} from 'google-maps-promise';
release()
.then(
() =>
console.log( 'No google maps api around' );
);
MIT.
[2.1.0] - 2018-02-27
FAQs
Wrapper for asynchronously load Google Maps API with Promise.
The npm package google-maps-promise receives a total of 794 weekly downloads. As such, google-maps-promise popularity was classified as not popular.
We found that google-maps-promise demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.