npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

google-static-maps-tile

v1.0.0

Published

Given a center map cordinate Google Static Maps API will be used to load tiles of a map in a given area.

Downloads

5

Readme

google-static-maps-tile

experimental

Given a center map cordinate Google Static Maps API will be used to load tiles of a map in a given area.

Example

var googleStaticMapsTile = require('google-static-maps-tile');

googleStaticMapsTile({ 
    areaSize: '2560x2560', 
    center: '26.443397,-82.111512', 
    zoom: 12, 
    maptype: 'satellite' 
})
.on('progress', function(info) {

  var image = info.image;
  image.style.position = 'absolute';
  image.style.left = info.data.x + 'px';
  image.style.top = info.data.y + 'px';
  document.body.appendChild(image);
});

Usage

NPM

var emitter = googleStaticMapsTile(options, [cb])

Will start loading Google Maps imagery based on the options passed. An event emitter is returned. Options are largely based on the module google-maps-image-api-url.

Some options outside of google-maps-image-api-url options:

{
    // the following are used to control what's rendered
    center: '26.443397,-82.111512', // must be a latitude and longitude
    areaSize: '2560x2560', // a string representing the area 
                           // you'd like to fill with google maps imagery
                           
    // the following are used to comply with Google Maps Image API
    // rate limiting for more info:
    // https://developers.google.com/maps/documentation/staticmaps/
    imagePerLoad: 50, // how many images to load in one batch load
    durationBetweenLoads: 60 * 1000 + 100, // interval in ms between 
                                           // batch images loads
    crossOrigin: 'Anonymous' // cross origin property for all images
}

emitter.on('progress', fn)

When a Google Maps Image Tile is loaded the progress event will be called. An info object will be returned that is the following:

{
    count: 0,
    total: 50,
    image: <img>,
    data: {
        positionIDX: {
            x: 0,
            y: 1
        },
        positionPX: {
            x: 640,
            y: 640
        },
        latlng: {
            lat: 28.00640077242305,
            lng: -80.35369949999999
        }
    }
}

License

MIT, see LICENSE.md for details.