google-panorama-url

1.0.0 • Public • Published

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.

Package Sidebar

Install

npm i google-panorama-url

Weekly Downloads

11

Version

1.0.0

License

MIT

Last publish

Collaborators

  • mattdesl