Questions tagged [panning]

"panning" refers to the rotation in a horizontal plane of an object or viewport.

"panning" refers to the rotation in a horizontal plane of an object or viewport. This is a term usually applies to cameras (or the viewport, in computer terms).

206 questions
0
votes
1 answer

LibGDX - Scene2D panning

I've been working on a project lately, for my homework. Well, going to the point, I have a Screen implementation of Scene2D, the issue I have is that my touch events on the widgets I have don't stop on the widgets. I mean, If i popup a window, and…
0
votes
1 answer

how to implement two fingers panning like safari broswer?

i try to implement panning and zooming functionality like safari browser in ipad. i used UIPinchGestureRecognizer for zooming with two fingers touch. but i dont know how to implement two fingers panning. when i touch with two fingers its tap count…
priyanka
  • 2,076
  • 1
  • 16
  • 20
0
votes
1 answer

Panning through mouse in windows 8 app?

I am developing a windows 8 app and have to enable panning on the image through mouse.It is working on the Tablet but somehow I need to enable it from the mouse also. And I am writing pointer wheel changed event for zooming the image but it is…
0
votes
1 answer

How to make double tap and panning work at same time, in Android?

So I'm trying to get my view working with many different ways, there should be: Multitouch for zooming Touchlistener for panning Doubleclick for restoring zoom or if it's already restored it will zoom the place where double click was. At the…
niksi
  • 61
  • 8
0
votes
1 answer

How to use panning with WebKitGTK?

I want to use WebKitGTK on a touchscreen device. Since operating scroll bars on such a device is too cumbersome I would like to have some panning support. Since WebKit is used on quite a number of mobile devices which all support panning I hope that…
Meixner
  • 615
  • 5
  • 8
0
votes
1 answer

Using angular animation to change view using panning snaps

I am changing the view using ngRoute which loads a new template for ng-view. The new view is loaded via angular animation (in a panning like manner). This works, however when the new view is sliding in it is not on the right place. When the…
HaTo
  • 5
  • 1
0
votes
1 answer

jQuery-Knob to control web audio api panning

So I have a panning feature with a basic HTML input range I am using the following javascript code to control the panning: var x = this.valueAsNumber, y = 0, z = 1 - Math.abs(x); panner2.setPosition(x,y,z); Any idea how to implement it with…
boombap123
  • 107
  • 1
  • 10
0
votes
1 answer

Strange D3 pan/zoom behaviour - accelerating pan

I have got a d3 example where panning on the x axis results in accelerated panning. That is, when I hold the left button down and move the pointer, the data pans in a non-linear way. This is probably best illustrated in an example,…
sachams
  • 33
  • 5
0
votes
1 answer

Apply panning and zooming on inline SVG

So we have this major project and we aim to create a simple wayfinding system through the use of inline SVG that includes zooming and panning feature and is targeted to be deployed on touchscreen units. We wanted to create something similar like…
zangetsu
  • 127
  • 8
0
votes
1 answer

ActionScript - Automatic Test Cases for Zooming and Panning

I have a very easy application in both AS3 and C++ (for mobile version) which shows a map of New York and allows the user to pan, zoom and receive information boxes when clicking on an attraction on the map. My question is: how could I write simple…
Vintage
  • 238
  • 1
  • 2
  • 13
0
votes
1 answer

Panning two stack panels in Windows phone

I'm pretty new at programming for Windows Phone and so I decided to code a simple app which should only show some data. Now I wanted to implement a pan gesture: I have two stack panels, one is displayed and with a swipe to the right, the second one…
0
votes
2 answers

Javascript Cursor Zooming

Is there a way to zoom on the cursor point using this code? I can't get my head around to doing it. The canvas zooms but it only zooms in and out from the top left corner. var previousMousePosition = new Vector(0, 0); function OnMouseWheel (event)…
mca-surround
  • 87
  • 1
  • 3
  • 10
0
votes
1 answer

Why doesn't the UIImageView.center change when panning with UIPanGestureRecognizer (Swift)?

When I use the 'UIPanGestureRecognizer' to move a 'UIImageView' object, I notice the 'center' attribute doesn't change. Why is this, am I doing something wrong? Here is the code: func handlePanning1(recognizer: UIPanGestureRecognizer) { var…
Rich Episcopo
  • 499
  • 1
  • 5
  • 17
0
votes
1 answer

Best way to pan & scan images with jquery

I am trying to make an image pan & scan system. I have a slider that zooms the image (that can be dragged) and also a small map in the corner of the image (that can also be dragged). You can see a rough example here (sorry, I am not allowed to use…
0
votes
1 answer

Google map with doubleclick event and pan event in Android

I have different implementation for panning and on double click of google map.I have implemented the panning functionality with the help of this link. But the issue is when user double click on map the updation on map occurs twice as the action_up…
JAPS
  • 250
  • 4
  • 15