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-panorama-equirectangular

v2.1.0

Published

gets equirectangular images from Google StreetView

Downloads

58

Readme

google-panorama-equirectangular

experimental

2d

webgl demo - source

Stitches Google Street View and Photo Sphere tiles into an equirectangular image. For use in the browser, with Webpack or Browserify.

Also includes an intermediate mode for higher quality WebGL rendering on low-end devices.

Install

npm install google-panorama-equirectangular

Example

For full examples, see the demo/ folder, or running from source for details.

Make sure to include the Google Client library first:

  <script src="https://maps.googleapis.com/maps/api/js?v=3.21"></script>

Then, in JavaScript:

var load = require('google-panorama-equirectangular')
var panoID = 'dXZfBMex9_L7jO2JW3FTdA'

load(panoID, { zoom: 2 })
  .on('start', function (data) {
    console.log('canvas size: ', data.width, data.height)
  })
  .on('progress', function (ev) {
    console.log('progress: ', ev.count / ev.total)
  })
  .on('complete', function (image) {
    document.body.appendChild(image)
    console.log('canvas image: ', image)
  })

Usage

NPM

emitter = load(id, [opt])

Creates a new StreetView stitcher with id and optional settings. opt can be:

  • zoom an integer between 0 and 5 (inclusive), defaults to 1
  • canvas a HTMLCanvasElement to re-use, defaults to creating a new element
  • tiles is the tile dimensions from getPanoramaByLocation or getPanoramaById, defaults to assuming StreetView image dimensions
  • crossOrigin crossOrigin String for image loading, defaults to undefined
  • width some new StreetView IDs can be fetched by size; if the ID falls into this category, the returned image will ignore the zoom parameter and instead try to find something by width*(width / 2) dimensions
  • protocol the protocol to use when requesting images; defaults to undefined which will load a protocol-relative URL (//foo.com/) but you can specify an exact protocol if desired (which may be necessary in some environments like CocoonJS), such as 'http' or 'https'

Here is an example using google-panorama-by-id.

It's recommended you specify tiles for an accurate result across different image types (panorama, photo sphere, etc).

var load = require('google-panorama-equirectangular')
var panoData = require('google-panorama-by-id')
var id = 'dXZfBMex9_L7jO2JW3FTdA'

panoData(id, function (err, result) {
  var tiles = result.tiles
  load(id, { tiles: tiles, zoom: 2, canvas: myCanvas })
})

events

emitter.on('start', fn)

Called when the stitching process begins, with data parameter that includes the output of google-panorama-tiles:

{
  columns: Number,    // x tile count
  rows: Number,       // y tile count
  tileWidth: Number,  // tile size
  tileHeight: Number, // tile size
  width: Number,      // canvas size
  height: Number,     // canvas size
  legacy: Boolean     // false if this is from the new API
}

emitter.on('progress', fn)

Called after a new tile has been loaded and drawn to the canvas.

{
  count: Number,    // current # of tiles loaded
  total: Number,    // total number of tiles
  image: Image,     // an image for this tile, might be null
  position: [x, y], // the pixel position of the tile in the full image
}

In intermediate mode, the image might be an Image or a Canvas, depending on crop.

emitter.on('not-found', fn)

Called when an image is skipped due to it not being found. The url is passed.

emitter.on('complete', fn)

Called when the stitching is complete. The resulting canvas is passed as the parameter.

In intermediate mode, the passed canvas is the one used during cropping.

Intermediate Mode

The default export stitches all tiles into a single Canvas element. This is convenient, but not ideal for low-end devices like iOS Safari. In some browsers, there is a maximum size for canvas elements, and no way to query this value.

For example, in a 256MB RAM iPhone, the full canvas size must be less than 1024 * 1024 * 3 (3 MP).

WebGL applications can leverage "intermediate rendering" mode which keeps no more than a single 512x512 canvas in memory at a time. This allows higher quality panoramas to be stitched on low-end devices. The interface is the same, and can be required like this:

var equirect = require('google-panorama-equirectangular/intermediate')

Each 'progress' event simply returned a cropped image for that tile. You will need to stitch and upload sub-images yourself to WebGL. See demo/gpu.js for an example.

In intermediate mode, the imgage field of 'progress' events might be a canvas or image, depending on whether a crop was necessary. The originalImage is provided to allow access to the HTMLImageElement, so the event data is:

{
  count: Number,
  total: Number,
  image: Canvas|Image,
  position: [x, y],
  originalImage: Image
}

Running From Source

To run the demos from source:

git clone https://github.com/mattdesl/google-panorama-equirectangular.git
cd google-panorama-equirectangular
npm install

Now run one of the demos:

# the simple WebGL demo
npm run webgl

# the simple 2D DOM demo
npm run 2d

# the GPU stitching demo
npm run gpu

And open http://localhost:9966/. Changing the source will re-load the browser page.

Also See

Credits

Thanks to @thespite's prior work on PanomNom.js, which was used as a reference while building these modules.

License

MIT, see LICENSE.md for details.