I try to open a pop up whith the choice of 2 phone number when clicking on a marker on maps.
I try to follow instructions here :
Show popup above map marker in MapView
but ItemizedOverlay method doesnt work.
here is my onmarker onMarkerClik :
gMap.setOnMarkerClickListener(new GoogleMap.OnMarkerClickListener() {
@Override
public boolean onMarkerClick(Marker arg0) {
// Open a pop up with phone number to call
return true;
}
});
What can I put in it to have my pop up ? to have this :
Thank you