I want to be able to click/tap any location on the Map and retrieve the lat/long coordinates of my click/tap. Is there away I can do that?
Got it. In case someone is wondering this is what needs to be done
1. public class MyMap extends Activity implements MapListener
2. mapComponent.setMapListener(this);
3.
public void mapClicked(WgsPoint arg0) {
// TODO Auto-generated method stub
DisplayPopupMessage("coords: "+arg0.getLon()+","+arg0.getLat());
}
You should implement MapListener interface, use addMapListener to MapComponent and there you have MapClicked() method with WgsPoint which has lat/long.
/JaakL