Release v1.10.0
· One min read
Map Pitch
You can set the map’s pitch in degrees in GLMapView
using the setMapPitch
method.
When following directions, a tilted map perspective can be more intuitive than the traditional overhead view. This perspective simulates what a traveler sees when looking at the road ahead, making navigation more user-friendly and realistic.
Breaking Changes
The type of GLMapGestureBlock
has been changed to: typedef BOOL (^GLMapGestureBlock)(PlatformGestureRecognizer *gestureRecognizer);
To receive the location of a tap, call [gestureRecognizer locationInView:view]
. Additionally, you should return YES
if the tap is handled and NO
otherwise.