Fixed
Status Update
Comments
br...@google.com <br...@google.com>
br...@google.com <br...@google.com> #2
This error means that there are SSL issues when connecting to any of those URLs–do you have any unusual proxy or network settings? You may need to configure gcloud to use them. Or were you behind a captive portal at the time you ran this?
Description
demonstration page if at all possible, or attach code.
1. Add a UIPinchGestureRecognizer
2. set GMSUISettings scrollGestures property during pinch
- (void)zoomGestureHandler:(UIPinchGestureRecognizer *)recognizer
{
if([recognizer state] == UIGestureRecognizerStateBegan)
{
_mapView.settings.scrollGestures = NO;
}
else if([recognizer state] == UIGestureRecognizerStateEnded)
{
_mapView.settings.scrollGestures = YES;
}
}
3. perform quick pinch gestures and the camera will jump away after zooming
Operating system version: iOS 8.1.3
Google Maps SDK for iOS version: 1.9.2
Hardware model: iPhone 6
*********************************************************
For developers viewing this issue: please click the 'star' icon to be
notified of future changes, and to let us know how many of you are
interested in seeing it resolved.
*********************************************************