// Set our location of the maps
float lon = 52.5f;
float lat = 13.4f;
// Initialize two maps
map1 = new UnfoldingMap(this, mapXposition, mapYposition, mapWidth, mapHeight);
map1.zoomAndPanTo(new Location(lon, lat), 10);
map2 = new UnfoldingMap(this, mapXposition, mapYposition, mapWidth, mapHeight, new Microsoft.AerialProvider());
map2.zoomAndPanTo(new Location(lon, lat), 10);
MapUtils.createDefaultEventDispatcher(this, map1, map2);
}