Is it possible to add a button to an overlay class?
For example, I have an overlay class:
public class mymapoverlay extends Overlay {
Which is put over a map (in a map activity):
mapOverlay = new mymapoverlay(this);
moc = map.createOverlayController();
moc.add(mapOverlay, true);

