What is the equivalent code for iOS to show the infowindow of marker in Google Maps in iOS
Marker marker = myMap.addMarker(new MarkerOptions()
.position(latLng)
.title("Title")
.snippet("Snippet")
.icon(BitmapDescriptorFactory
.fromResource(R.drawable.marker)));
marker.showInfoWindow();
like this in android.
the infowindow will be automatically displayed. refer google's documentation for more information