[android-developers] Re: Detecting clicks on a google maps Overlay

2009-06-16 Thread adadcalledrichard
Or you could use the ItemizedOverlay class which has an onTap(int item) method. Set up each "dot" as a marker item. Cheers, Richard www.creelcard.com On Jun 16, 4:20 am, adamphillips12 wrote: > If you look at the Overlay class, there is an onTap() method, this > will be called when a tap gestu

[android-developers] Re: Detecting clicks on a google maps Overlay

2009-06-15 Thread adamphillips12
If you look at the Overlay class, there is an onTap() method, this will be called when a tap gesture on your map is made and it will be called on all Overlays in the MapViews list. onTap() asks you to return true if the given point was an overlay. This check is up to you to decide, presumably if