像 Google 地图一样的图像移动
我有一个大图像,需要在较小的容器(或类似的容器)中显示。用户应该能够向上、向下、向左和向右移动图像。正确的。它应该像谷歌地图一样。
您知道我可以从哪里开始以及如何解决这个问题吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许像 DeepZoom 这样的东西会起作用。
您还可以创建一个具有平移功能的简单 UserControl 或 CustomControl,例如,有一个画布可以处理一些鼠标事件,以操作图像上的 TranslateTransform(该图像应该是画布的子级)。
事件处理概要:
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: