In the current version of ZoomPanel there is no mini map included.
But it could be a nice feature - I have added it to my todo list and will implement it in the new version (cannot say when it will be available).
I have prepared a code to implement a simple mini map by yourself:
ZoomPanel1.ViewboxChanged += new Ab2d.Controls.ZoomPanel.ViewboxChangedRoutedEventHandler(ZoomPanel1_ViewboxChanged);
return _zoomPanelMiniMapCanvas;
}
void ZoomPanel1_ViewboxChanged(object sender, Ab2d.Controls.ViewboxChangedRoutedEventArgs e)
{
// NOTE that if ZoomPanel is animated, the ZoomPanel1.Viewbox is not yet changed to the final value because the animation is just started
// The e.NewViewboxValue is already the final value
UpdateMiniMapRectangle(e.NewViewboxValue);
}