I'm doing something along these lines to show information for a bus stop when the user taps on the stop's icon on the map. You can see screen shot of it on my app webpage. It's not super fancy, but the basic idea is there.
What you can do is create a custom view that's designed the way you want to show whatever pop-up information you need to display and show it on the map when the user clicks an overlay item. You can detect when a user has touched an item with the onTap() method in the overlay class. You can then add your custom view to the mapview using the MapView layout params that allow you to place that view at a specific location on the map (in this case above the marker that was tapped). ------------------------------------------------------------------------------------------------- TreKing - Chicago transit tracking app for Android-powered devices http://sites.google.com/site/rezmobileapps/treking On Mon, Nov 16, 2009 at 7:34 AM, rde8026 <[email protected]> wrote: > I spent some time a month back looking for this and didn't get > anywhere. I'm pretty sure (but of course I've been wrong many times) > that replicating what you see > on the GMap's browser features is not going to be possible on the > Android. I'm not sure rendering works the same. What I did was just > simply mapped an Intent > to each marker and when someone clicked on a marker the intent was > opened. I didn't love it but I just didn't find another way. If you > need any assistance with > that let me know... > > On Nov 15, 11:38 pm, Timmah <[email protected]> wrote: > > I am looking for code examples of how to draw a description box when > > clicking on a map marker. Something similar to google map's > > implementation - > http://code.google.com/apis/maps/documentation/examples/icon-custom.html > > (Click on the marker to see an example) > > > > Much appreciated ! > > -- > You received this message because you are subscribed to the Google > Groups "Android Developers" group. > To post to this group, send email to [email protected] > To unsubscribe from this group, send email to > [email protected]<android-developers%[email protected]> > For more options, visit this group at > http://groups.google.com/group/android-developers?hl=en > -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

