// break;
case KeyEvent.VK_BACK_SPACE:
p.popScene();
break;
case KeyEvent.VK_F1:
Location stuttgartLoc = new Location( 48.7771056f, 9.1807688f);
map.setCenterZoom(stuttgartLoc, 15);
System.out.println("Center set to location: " + stuttgartLoc);
break;
case KeyEvent.VK_F2:
Location c = map.getCenter();
this.getPictures(c, this.getAccuracyForZoom(map), true);
break;
case KeyEvent.VK_F3:
Point[] p = this.getScreenPoints();
for (int i = 0; i < p.length; i++) {
Point point = p[i];
Location loc = map.pointLocation(point.x ,point.y);
this.getPictures(loc, this.getAccuracyForZoom(map), true);
}
this.getPictures(map.getCenter(), this.getAccuracyForZoom(map), false);
break;
case KeyEvent.VK_F9:
Location lisbon = new Location(38.693f, -9.198f);
map.setCenterZoom(lisbon, 15);
System.out.println("Center set to location: " + lisbon);
this.updateTagContainerScale();
break;
case KeyEvent.VK_T: