Hi,
I am looking to create a map application. I want it to show a location that user selects from a list and show here the location is, then add a button on the map so that the user can navigate from there current location to the one selected.
I have looked at tutorials but cannot find anything that does this.
Anyone know where I might find a tutorial that shows this or how I can extend my simple map to show a given location.
import com.ff.org.R;
import com.google.android.maps.MapActivity; import com.google.android.maps.MapView;
public class Locbrad extends MapActivity {
@Override
protected boolean isRouteDisplayed() {
return false;
}@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.map1);
MapView mapView = (MapView) findViewById(R.id.mapview);
mapView.setBuiltInZoomControls(true);
}
}