I have an big image which I need to show in a smaller container (or smthg like this). The user should be able to move the image up, down, left & right. It should be like Google Maps.

Do you have an idea where I can start and how to solve this?

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

Maybe something like DeepZoom would work.


You could also create a simple UserControl or CustomControl with panning functionality, e.g. have a canvas which handles some mouse events to manipulate a TranslateTransform on your image which should be a child of the canvas.

Event handling outline:

// Add this transform to the image as RenderTransform
private TranslateTransform _translateT = new TranslateTransform();
private Point _lastMousePos = new Point();

private void This_MouseDown(object sender, MouseButtonEventArgs 
{
    if (e.ChangedButton == PanningMouseButton)
    {
        this.Cursor = Cursors.ScrollAll;
        _lastMousePos = e.GetPosition(null);
        this.CaptureMouse();
    }
}

private void This_MouseUp(object sender, MouseButtonEventArgs e)
{
    if (e.ChangedButton == PanningMouseButton)
    {
        this.ReleaseMouseCapture();
        this.Cursor = Cursors.Arrow;
    }
}

private void This_MouseMove(object sender, MouseEventArgs e)
{
    if (this.IsMouseCaptured)
    {
        Point newMousePos = e.GetPosition(null);
        Vector shift = newMousePos - _lastMousePos;
        _translateT.X += shift.X;
        _translateT.Y += shift.Y;
        _lastMousePos = newMousePos;
    }
}
link|improve this answer
Thanks. DeepZoom seems to be a nice solution but a litte bit overloaded. – Tim Apr 9 '11 at 17:35
Added another suggestion outline which is worse in terms of performance for huge images but is more simple. – H.B. Apr 9 '11 at 18:10
Thank you H.B.! It works for me and the performance is not that bad ;) – Tim Apr 11 '11 at 7:13
Nice; Unless you are still looking for better solutions you could accept this by clicking the checkmark on the left of my answer. – H.B. Apr 11 '11 at 12:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.