Hi!
How can I display a popup when clicking on a marker in google maps api android?
Here is the marker
LatLng sLatLng12 = new LatLng(xx.xxxx, xx.xxxxx);
googleMap.addMarker(new MarkerOptions()
.position(sLatLng12)
.title(getString(R.string.title1map))
.snippet(getString(R.string.snippet1map))
.icon(BitmapDescriptorFactory.fromResource(R.drawable.ikon)));
I want to display a huge text which snippet doesn't allow me, so I want to display a popup displaying a html page or anything that can handle a huge text such as "release note" sections of other apps.
Thanks in advance!