Fixed
Status Update
Comments
jc...@gmail.com <jc...@gmail.com> #2
This sounds like a bug. Can you put together a reproduction sample on github? Once I have a repro case engineering will have a look at it. Thanks!
ja...@gmail.com <ja...@gmail.com> #3
i have the same issue with 1.13.0, when using the GMSMapViewDelegate - (UIView *)mapView:(GMSMapView *)mapView markerInfoWindow:(GMSMarker *)marker returning a custom UIView.
cs...@gmail.com <cs...@gmail.com> #4
dg@ could you please post a repro case to github, I'm interested to see a full working sample. Thanks!
ma...@marcosero.com <ma...@marcosero.com> #5
The below git repo contains the code that the issue occurs.
Note that If I reverse the Google Map API version to 1.12.3, the code works fine.
https://github.com/benba5/IssueGoogleMap1.13.0
Thank you very much
^__^
Note that If I reverse the Google Map API version to 1.12.3, the code works fine.
Thank you very much
^__^
br...@google.com <br...@google.com> #6
Thanks for the repro benlbenl5!
ma...@marcosero.com <ma...@marcosero.com> #7
We have a work around for this issue. Add the following code to the custom info window:
override func didMoveToSuperview() {
superview?.autoresizesSubviews = false;
}
override func didMoveToSuperview() {
superview?.autoresizesSubviews = false;
}
br...@google.com <br...@google.com> #8
Thank you for the clarified enhancement requirements.
br...@google.com <br...@google.com>
fu...@gmail.com <fu...@gmail.com> #11
@benlbenl, please raise a new issue for the new bug. Thanks!
br...@google.com <br...@google.com> #12
Version 1.11.0 shipped: GMSMapViewDelegate has new events to indicate when map tiles and labels are pending and finished rendering.
[Deleted User] <[Deleted User]> #13
Still can't to check if map is fully rendered or there are error exists
Description
I want to show the activity indicator on the status bar in the right way. Which means the activity indicator on status bar should be visible when the map is still rendering and be invisible when the map is rendered.
But now, it stay invisible even the map is rendering(in fact, invisible all the time). Under EDGE, it take long time to render the map, meanwhile there is no activity indicator on the status bar. The user will think the app may be blocked or something else wrong.
It seems the map view will not manager it him self. And I don' find a way in SDK to control it.
Thank you for help.
* Tested with iPhone 5 (iOS 6.1.3) and iPhone 4 (iOS 5.1.1)
Shengjia