Questions tagged [zooming]

Zooming is the act of enlarging something (a document, an image, a map) to view it in greater detail. (DO NOT USE for questions about the Zoom communications platform; instead, use [zoom-sdk].)

Zooming in graphical user interfaces is a facility that allows users to change the scale of the viewed area in order to see more detail or less. Often, there is a facility that allows the user to move the zoomed area with respect to the overall item being viewed.

6043 questions
2
votes
0 answers

Android Scrolling and scaling in a layout

I want to have a UI which draws some graphics items and users can scroll and scale the graphics scene with gestures(like Google maps).I have used graphics framework in Qt but I can't find anything like it in Android. I fond Dragging and Scaling and…
StephenLau
  • 46
  • 4
2
votes
1 answer

How can I fit this grid into initial window size, but allow users to zoom? (non-responsive)

The following hexagonal grid (with fixed width and height) should fit into the initial window size of the browser. Users should be able to zoom in arbitrarily (with both pinch-to-zoom and/or keyboard shortcuts), but in the initial state, the grid…
v.kasto
  • 85
  • 1
  • 6
2
votes
3 answers

Chart.js zoom start at zoomed in

I have built a line chart using Chart.js, and the Zoom plugin. It all works well it Pans and Zooms nicely, however, the chart always loads with the complete range of data, I want it to start "Zoomed in" by n amount. I have tried to adjust the…
user3725310
2
votes
0 answers

image zoom and transition from collectionView to viewcontroller swift

I have a collection view with few images. When I click the image, the image need to zoom and navigate to viewcontroller. For this I used ZoomTransitioning Library. https://github.com/WorldDownTown/ZoomTransitioning But I am not able to transit the…
thipoo24
  • 138
  • 15
2
votes
1 answer

Android/Java How to Pinch To Zoom/Scroll an entire activity? (NOT an ImageView)

How can I pinch to zoom (smoothly) and scroll around my entire activity screen? I've found dozens of post that talk about pinch to zoom for an ImageView but thats not what I'm trying to do. In my activity I have an image, text, and buttons. I want…
Scott Nova
  • 43
  • 1
  • 8
2
votes
1 answer

Leaflet: Pan, center, zoom map to marker location

I'm new to Leaflet and having fun with it so far. I have an interactive map with 170 or so markers around the world. Each marker has a title in the popup. I'd also like to add a "zoom to" link inside of the popup. When the user clicks zoom to, I…
mediaguru
  • 1,807
  • 18
  • 24
2
votes
0 answers

Uipinchgesturerecognizer zoom image with specific location (Not from Center) - IOS

I want to zoom image using pinch gesture zoom image with specific location/coordinate (Not from center). I don't want to use scrollview, because of when i zoom image with specific location at that time user can drag image also, so i want to stop…
AtulParmar
  • 4,358
  • 1
  • 24
  • 45
2
votes
1 answer

Mouse scroll zoom not working on dashboard chart

I would like to add mouse scroll zooming, but the explorer function doesn't seem to work in the chart options. How can I get mouse scroll to zoom the chart? explorer: { axis: 'horizontal', keepInBounds: true, maxZoomIn: 4.0 } Here's my…
Michal
  • 65
  • 7
2
votes
1 answer

How do i pinch to zoom the entire screen (including labels, buttons and images)? IOS, Swift 3

This code doesn't seem to work. wondering what I'm doing wrong/missing. I assume that I: drag and drop the UIPinchGestureRecognizer to the viewcontroller (so that it doesn't interfere with the connections to buttons, label etc. and it is connected…
MontgommeryJR
  • 255
  • 3
  • 18
2
votes
3 answers

OpenGL: Drawing objects (fixed size, indifferent to zoom, and relative position) on a map

I am working on a Java OpenGL application described below. The application shows a large 2D texture of a world map. Some information must be represented as captions on the map (for example, a caption near Spain that shows its population). The…
txedo
  • 956
  • 11
  • 11
2
votes
1 answer

Zoom upwards while recording video in Swift

I'm trying to do something like Snapchat does, while you are recording, if you drag upwards your finger, the video is zoomed. Does anyone know how to do it in Swift3 or if there's a pod that I can based on. I'm using SCRecorder to record the video,…
gutiago
  • 129
  • 3
2
votes
1 answer

Drawing on canvas after zoom

I'm working on an HTML5 application which renders shapes on canvas. The shapes are drawn by the user, using free drawing. I implemented zooming, thanks to this answer: https://stackoverflow.com/a/6776341/ However, once the canvas is zoomed, when…
Joachim
  • 245
  • 2
  • 10
2
votes
1 answer

Adding rubberband zoom to ChartView via MouseArea

I have a ChartView item declared in QML and I need a rubberband-like zoom functionality. This can be achieved with semi-transparent rectangle and MouseArea item. The problem is with one rectangle it's only possible to select area from top-left to…
z3dd
  • 177
  • 1
  • 11
2
votes
1 answer

Smooth Zoom with mouse in Mandelbrot set (C)

I've been working on a C Mandelbrot set program for the past few days and I managed to make it work fine, however, my end goal is to be able to smoothly zoom in the set with my mouse and that's something I haven't yet been able to do yet so I might…
Dukev
  • 23
  • 1
  • 4
2
votes
1 answer

CSS: Display image with position:fixed but allow user zoom

I've created a page that scales large images to fit the window, however it does not allow the user to zoom once the image is loaded and scaled to fit. I want the initial view size to be as realized by the css as shown below, but thereafter I want…
Tom
  • 1,836
  • 4
  • 16
  • 30