UnfoldingMap map2;
public void setup() {
size(800, 600, OPENGL);
map1 = new UnfoldingMap(this, "map", 50, 50, 500, 500);
map1.zoomToLevel(2);
MapUtils.createDefaultEventDispatcher(this, map1);
map2 = new UnfoldingMap(this, "map", 575, 50, 150, 150);
MapUtils.createDefaultEventDispatcher(this, map2);
List<Feature> features = GeoRSSReader.loadData(this, "data/bbc-georss-test.xml");
List<Marker> markers = createLabeledMarkers(features);
map1.addMarkers(markers);