I was wondering if there is some kind of implementation in OSMDroid that is similar to Android Google Map API v2's method OnInfoWindowClickListener()?
For my Android Google Map AVI v2:
mMap.setOnInfoWindowClickListener(new OnInfoWindowClickListener() {
@Override
public void onInfoWindowClick(Marker marker) {
Bundle b = new Bundle();
for(PlaceDetails place: places){
if(place.getPlaceName().equals(marker.getTitle()) ){
//do some stuff here
//....................
}
}
FragmentTransaction ft = getSherlockActivity().getSupportFragmentManager().beginTransaction();
PlaceSEOPageFragment placefrag = PlaceSEOPageFragment.newInstance(b);
ActionBar actionBar = getSherlockActivity().getSupportActionBar();
actionBar.show();
ft.replace(R.id.container, placefrag).addToBackStack(null).commit();
}
});
For OSMDroid, I have only found it here in this link from OSMBonusPack that I have to put in some button and then do a onClickListener on that.
Questions:
Am I able to have the same implementation using the OSMBonusPack to do something upon clicking the bubble?
Am I able to draw the title/description from the bubble in OSM to do a check and comparison like how I did it with Google Map API v2?