You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 25, 2019. It is now read-only.
Hi, I want to show the info window whenever you tap anywhere on the map. is it possible?
I found a solution but the marker.showInfoWindows(); doesn't exist in this project. Marker marker = myMap.addMarker(new MarkerOptions() .position(latLng) .title("Title") .snippet("Snippet") .icon(BitmapDescriptorFactory .fromResource(R.drawable.marker)));
marker.showInfoWindow();
right now I was able to show the info window by adding a marker whenever you tap but you need to tap again the marker to show the infowindow. I want to automatically show the infowindow whenever you tap anywhere on the map. Please help :(