// list all imagery entries where the current map location
// is within the imagery bounds
if (Main.isDisplayingMapView()) {
MapView mv = Main.map.mapView;
LatLon pos = mv.getProjection().eastNorth2latlon(mv.getCenter());
final Set<ImageryInfo> inViewLayers = new TreeSet<>();
for (ImageryInfo i : ImageryLayerInfo.instance.getDefaultLayers()) {
if (i.getBounds() != null && i.getBounds().contains(pos)) {
inViewLayers.add(i);