So I have a class called 'InterestingPoint' with variables 'Name', 'Coordinates'. I've created a list with interesting places and then I've added markers on the map like that:
for (InterestingPoint point:route.points_of_interest){
mMap.addMarker(new MarkerOptions().position(point.Coordinates).title(point.Name));
}
So the main question is can I get details of any marker when I click on it? When I click on marker I want to show description and picture of that place.