JeremyHeleine / Photo-Sphere-Viewer

A JavaScript library to display Photo Sphere panoramas.
854 stars 952 forks source link

Zoom_speed option doesn't work with touch events #91

Open LionelMullot opened 6 years ago

LionelMullot commented 6 years ago

Using zoom_speed option in PSV doesn't work with touch events.

One solution could be to change Line 2061 : this.zoom(this.prop.zoom_lvl + delta); By : this.zoom(this.prop.zoom_lvl + (delta * zoom_speed));

Thx.