how can I determine the Field of View a street view panorama map is using

后端 未结 5 1398
余生分开走
余生分开走 2021-01-05 01:23

I notice the Field of View (FOV) degree per street view zoom level is different between browsers

I believe the documented street view zoom level to FOV is



        
5条回答
  •  死守一世寂寞
    2021-01-05 01:36

    Currently, there is a table here relating zoom and FOV that says:

    0=>180 1=>90 2=>45 3=>22.5 4=>11.5

    You can convert from zoom to FOV in javascript like this:

    var fov = 180 / Math.pow(2,zoom);

提交回复
热议问题