Hi I am basically creating some markers on the map and for each mark I create an information window.
- Is it possible to add an image for instance for each marker's information window on the map?
- If so how?
This is googles documentation about markers but I can't find anything about images or so. Any idea? Thanks in advance!
private static final LatLng MELBOURNE = new LatLng(-37.813, 144.962);
private Marker melbourne = mMap.addMarker(new MarkerOptions()
.position(MELBOURNE)
.title("Melbourne")
.snippet("Population: 4,137,400")
.icon(BitmapDescriptorFactory.fromResource(R.drawable.arrow)));