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

Panning button controls on Bing V8 maps

While working on Bing V8 maps I found that we do not have default button controls for panning on map. Is there a way to display panning buttons for directions North, East, West and South or it is just not available in V8 maps.
Madhur Maurya
  • 1,016
  • 4
  • 19
  • 42
0
votes
1 answer

Ionic reset panning value

I want to reset my panning value. Basicly what i want todo is when the value hits -130 it should put the panning value to 0 again. My code: swipeEvent($e) { if ($e.deltaX <= -130) { document.getElementById("button").click(); …
CupOfTea
  • 173
  • 1
  • 11
0
votes
1 answer

How can I fit the width of an Image on the screen along with zooming and panning in Android studio

In my app, I have an activity that has only one image view showing a long vertical image, I can zoom and pan the Image but my problem is when I open the activity the full length of the image is shown like this: enter image description here But what…
Rumaisa
  • 1
  • 1
0
votes
0 answers

Highcharts panning chart on mobile devices

I'd like to build a chart with panning, like this one http://jsfiddle.net/6ccc08yg/ $(function () { $('#container').highcharts({ chart: { panning: true, }, xAxis: { categories: ['1#', '2#', '3#', '4#', '5#', '6#', '7#',…
sabrina
  • 1,567
  • 2
  • 12
  • 15
0
votes
3 answers

Naudio panning is not working

I can't get the panning to work in Naudio. here is my code: void Play(double Amp, double Left, double Right) { BBeats = new binaural_beats(); BBeats.Amplitude = Amp; BBeats.Amplitude2 = Amp; BBeats.Frequency = Left; …
Brandon
  • 187
  • 1
  • 3
  • 11
0
votes
2 answers

JavaScript Panning on ASP Image

got a little problem here. I tried to implement some Javascript, which should add some client side functionality to an ASP Image component. Actually this image component is one of the DevExpress component, called "AspxBinaryImage". It's just a…
Alex
  • 1
  • 1
0
votes
1 answer

UIScrollView Vertical Pan Snapping to top or bottom of view

I have an image that is 320x480 and upon orientation change this image obviously hangs out of view. There are some images where the focal point of it sits with it's bottom cut off (which isn't undesirable). My issue however is when the user pans…
Dan Hanly
  • 7,829
  • 13
  • 73
  • 134
0
votes
1 answer

Android. OpenGl ES. panning/scrolling

I'm writing an app which displays map. User can zoom and pan. Map is rotated according to magnetometer's value (map is rotated in opposite direction of device rotation). For scaling I'm using ScaleGestureDetector and passing scale factor to…
Gregory Stein
  • 325
  • 4
  • 14
0
votes
1 answer

Only trigger pan-end event with amCharts

I am using amCharts and build a amSerialChart. Here I want to trigger the 'pan' event. However I just want to trigger the final event, so that means when the pan ended. As far as I can read the manual…
threxx
  • 1,213
  • 1
  • 31
  • 59
0
votes
1 answer

Image zoom and panning

I want to implement zooming and panning functionality to image(png/svg/jpeg etc.) using javascript/jquery. There are lot of options available for normal zooming/panning but my requirement is a a bit complex as below: In the main image(to be…
Harpreet
  • 1,527
  • 13
  • 25
0
votes
1 answer

Panning - Initial position of my image before panning

I'm using Swift/SpriteKit and created a wide image of a map on a SKScene. I'm doing this all in code and wanted to let the user drag their finger to pan across this extra wide map. Think of it like an old school RPG map of a fantasy land. I was able…
NullHypothesis
  • 4,286
  • 6
  • 37
  • 79
0
votes
1 answer

Zooming and Panning an image within Canvas HTML

I need to upload an image to a canvas and make it able to pan and zoom. I was referencing GOK's answer here, but I ran into problems when trying to use an image. Using an image was made panning disabled and zooming would just make the image flash.…
user5432778
  • 121
  • 1
  • 14
0
votes
1 answer

Panning Image in pictureBox not working

I have developed windows application in c# where I have a pictureBox inside a panel. I have applied zoom in and zoom out functionality in it. Now I want the image inside the pictureBox to pan. I have applied mouseDown, mouseMove and mouseUp event on…
Umaima B
  • 11
  • 4
0
votes
1 answer

Canvas "jiggles" when panning

INTRODUCTION I am new to WPF and I am trying to implement Canvas panning on my own. I have managed to figure out the logic and mechanics that must be applied, but when implementing them I get a strange behavior. PROBLEM My panning code "works"…
AlwaysLearningNewStuff
  • 2,939
  • 3
  • 31
  • 84
0
votes
1 answer

Restrict panning to paths in Leaflet

I want to restrict the panning in leaflet to paths, preferrably more than one. The idea is that it is only possible to pan along roads, or a precalculated trajectory, and not freely across the…
cyborgx7
  • 43
  • 4