I have generated a QPixmap and have added it to my main graphicsview via a subclass of QGraphicsScene.

What I want is to take that same pixmap and use it in my mini map (smaller graphicsview similar to the first). The smaller view uses the standard QGraphicsScene.

I have the Pixmap and have called QGraphicsPixmapItem *pixItem = scene->addPixmap(myPixmap);

Question will this alone scale the pixmap to properly fit in the scene?
How about the position? Should I need to map the pixmap's position or offset?

almost there but still needing help,


Spawn9997