Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

google-panorama-url

Jam330MIT1.0.0

gets a street view URL from a panorama ID

panorama, equirectangular, street, view, URL, hack, mapshack, maps

readme

google-panorama-url

stable

Returns a raw street view URL from a panorama ID, tile position, and zoom level. This is an undocumented entry point from Google Maps, and best suited for experiments and artistic exploration.

Example

An example in the browser:

var streetview = require('google-panorama-url')
var loadImage = require('img')

var url = streetview('dXZfBMex9_L7jO2JW3FTdA')
loadImage(url, function (err, image) {
  if (err) throw err
  document.body.appendChild(image)
})

Usage

NPM

url = streetviewUrl(panoId, [opt])

Gets a URL for the StreetView panorama. Options:

  • x the X tile position, default 0
  • y the Y tile position, default 0
  • zoom the zoom level, default 0

See Also

License

MIT, see LICENSE.md for details.