I am trying to implement a custom info window on my Google Maps Marker on an iOS app. (As is done here and here for example.)
I have created a xib and a UIVie
Found the proper workaround for 1.13
Add the following code to the subclass CustomInfoWindow
override func didMoveToSuperview() {
superview?.autoresizesSubviews = false;
}
Source: https://code.google.com/p/gmaps-api-issues/issues/detail?id=9525
I have the same issue. It's a GoogleMaps's bug! Freezing apperrs in version 1.13.0.
You can use:
pod 'GoogleMaps', '1.12.3'