mapzen / ios

Where you can find everything iOS from Mapzen
https://mapzen.com/projects/mobile/
Apache License 2.0
40 stars 24 forks source link

Add support to tap-drag for zoom-in, zoom-out #322

Open nvkelso opened 7 years ago

nvkelso commented 7 years ago

Description

In Eraser Map we allow a tap-up-tap-drag behavior to zoom the map in and out – this is especially useful for 1 handed operation of the map (for pinch zoom it requires 1 hand to hold, 1 hand to pinch).

nvkelso commented 7 years ago

Related:

matteblair commented 7 years ago

We have this feature on Android because it is provided in a built-in gesture detector (they call it "quick zoom") and we only had to set a flag to turn it on. If I remember, this is not built-in on iOS, so we would have to write custom gesture recognizer code for it. I'm also not sure if this is a common gesture paradigm on iOS the same way it is on Android - an iOS user would probably know better than I would.