Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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:

  1. Am I able to have the same implementation using the OSMBonusPack to do something upon clicking the bubble?

  2. 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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.