I am trying to show a custom overlay view from the Google Maps through the Google Maps API for iOS. This overlay view content info of marker, and two my button. But I cannot find any references for this. My desired overlay view is as image with link below:
http://i1121.photobucket.com/albums/l515/dungnlh_khtn07/NguoiMoCay/overlayinfoview_zps8110b7ed.jpg
Please give me a guide for this!
The best way of achieving this is to pass your GMSMapView a custom view for your info windows via the GMSMapViewDelegate's
mapView:markerInfoWindow:
method.To accomplish this, set yourself up as the delegate for your GMSMapView instance, like so:
Then return a custom UIView when requested:
You can find a little more information by looking in the GMSMapView header, which states: