Skip to content

Instantly share code, notes, and snippets.

@leeprobert
Created November 7, 2014 15:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leeprobert/6576639cbef1dc46feed to your computer and use it in GitHub Desktop.
Save leeprobert/6576639cbef1dc46feed to your computer and use it in GitHub Desktop.
This bit of code will convert the StreetView getZoom() Number into the 'field of view' property you need for the StreetView Image API.
var zoom = panorama.getPov().zoom;
var fov = 180/Math.pow(2,zoom);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment