Stuff
public text v1 · immutablepublic boolean onKeyDown(int keyCode, KeyEvent event) {
if (keyCode == KeyEvent.KEYCODE_Z) {
mapView.getController().zoomIn();
return true;
} else if (keyCode == KeyEvent.KEYCODE_X) {
mapView.getController().zoomOut();
return true;
}
return false;
}