Zooming is the act of enlarging something (a document, an image, a map) to view it in greater detail.
110
votes
10answers
83k views
How can I get zoom functionality for images?
Is there a common way to show a big image and enable the user to zoom in and out and pan the image?
Until now I found two ways:
overwriting ImageView, that seems a little bit too much for such a ...
90
votes
14answers
43k views
How to detect page zoom level in all modern browsers?
How can I detect the page zoom level in all modern browsers? While this thread tells how to do it in IE7 and IE8, I can't find a good cross-browser solution.
Firefox stores the page zoom level for ...
66
votes
4answers
54k views
MKMapView Zoom and Region
I'm familiar with using Google Maps Javascript API. Recently I started using MapKit framework for an iphone project, but I'm having a hard time to figure out zooming and setting a region on map.
In ...
60
votes
6answers
52k views
Catch browser's “zoom” event in JavaScript
Is it possible to detect, using JavaScript, when the user changes the zoom in a page?
I simply want to catch a "zoom" event and respond to it (similar to window.onresize event).
Thanks.
50
votes
4answers
11k views
How do I disable zoom on control-scroll in Visual Studio 2010?
Visual Studio 2010 adds a zoom setting on the bottom left of the text editor (to the left of the horizontal scroll bar) and also adopts the control + mouse scroll idiom for zooming in and out.
The ...
44
votes
5answers
26k views
How can I enable zoom in on UIWebView which inside the UIScrollView?
I have a UIWebView which inside a UIScrollView (scrollview contain another component)
I tried to enable multitouch both on Interface Builder or Programmatic on UIWebView but it still cannot zoom for ...
34
votes
1answer
34k views
How do you disable viewport zooming on mobile safari?
I've tried all three of these to no avail:
<meta name=”viewport” content=”width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;” />
<meta name=”viewport” ...
25
votes
8answers
22k views
Disable Auto Zoom in Input “Text” tag - Safari on iPhone
I made an html page that has an tag with type equals "text". When I click in it using Safari on iPhone, all the page becomes larger (auto zoom). Does anybody know how to disable it?
24
votes
10answers
15k views
On zoom event for google maps on android
We're building an application which is using the google maps api for android.
I have my MapController and MapView, and I enable the built-in zoom controls using:
...
21
votes
4answers
8k views
Cannot zoom in and out of nib in the new Interface Builder
Have I missed something obvious or is it not possible to zoom freely in and out of an open nib file, within the integrated Interface Builder of Xcode 4?
20
votes
7answers
30k views
enable/disable zoom in Android WebView
There are some methods in WebSettings related to zoom:
WebSettings.setSupportZoom
WebSettings.setBuiltInZoomControls
I noticed they work differently on some deveices.
For example, on my Galaxy S ...
20
votes
2answers
13k views
Javascript / CSS: set (firefox) zoom level of iframe?
I'd like to create a page with multiple iframes displaying different pages - a sort of "browse multiple pages side-by-side" type thing. The trouble is that in doing so, the viewports are pretty small ...
20
votes
5answers
859 views
Zoom image to cursor breaks when mouse is moved
This is a followup question to How to zoom to mouse pointer while using my own mousewheel smoothscroll?
I am using css transforms to zoom an image to the mouse pointer. I am also using my own smooth ...
19
votes
6answers
33k views
android imageView: setting drag and pinch zoom parameters
this is my first post on here! :)
Anyway I am currently developing for Android (my first app) an application which lets users see the subway map and be able to pinch zoom and drag around.
I am ...
18
votes
6answers
2k views
Weird Overlay draw behaviour when zooming in the MapView
I've extended Overlay and implemented draw() in order to draw some stuff onto the map.
When zooming is done through mapController.zoomIn() (called when doubleTapping the map),
the overlay is drawn ...
17
votes
5answers
28k views
Changing the browser zoom level
I have need to create 2 buttons on my site that would change the browser zoom level (+) (-). I'm requesting browser zoom and not css zoom because of image size and layout issues.
Well, is this even ...
17
votes
2answers
2k views
Android Gallery with pinch zoom
I found a sample project of gallery with pinch zoom and made some bug fix. You can download my code at here
It supports full screen only. It always center the image to screen height. But I want to ...
16
votes
1answer
2k views
Can i disable the ctrl+scroll zoom function in netbeans?
Is there a way to disable the ctrl+scroll text zoom feature in netbeans? (7.1 on Mac OS X 10.7)
There was a plugin to kill the analogue "feature" in PHPStorm but I haven't found anything for netbeans ...
16
votes
2answers
3k views
Using nearest-neighbor with CSS zoom on canvas (and img)
When using the CSS zoom property, how can I convince the browser to use "nearest neighbor", instead of "bilinear" or any other more advanced zooming algorithms?
My setup is a div that contains a ...
14
votes
3answers
20k views
zoom css/javascript
I would like to know how zoom property can be controlled through javascript,
like div.style.top , how to specify for zoom ?
14
votes
1answer
424 views
zoom on webpage
i would like to create a zoom effect for my site for visually impaired people.
i currently have the font that adjust based on a user preferences:
i use this script:
...
13
votes
2answers
591 views
Zoom JPanel in Java Swing
I have an existing Java Swing application. In the middle of the application is a single JPanel which I want to be able to zoom in and out of. The JPanel has a number of JComponents on it (mostly ...
12
votes
2answers
9k views
Zoom Canvas to Mouse Cursor
I'm programming a HTML5 < canvas > project that involves zooming in and out of images using the scroll wheel.
I want to zoom towards the cursor like google maps does but I'm completely lost on how ...
12
votes
4answers
18k views
UIImageView Gestures (Zoom, Rotate) Question
I would like to make 2 operations to an UIImageView zoom, rotate, I have 2 problems:
A. I make an operation for zoom for ex. and when I try to make rotation the UIImageView is set to initial size, ...
11
votes
8answers
8k views
Disable zoom when clicking on form fields within a WebView?
I've looked through dozens of pages if similar questions, none of them have any answers, so hopefully this one will be different.
I have a webview, and I do not want the zoom of the view to change ...
11
votes
2answers
6k views
MATLAB - How to zoom subplots together?
I have multiple subplots in one figure. The X axis of each plot is the same variable (time). The Y axis on each plot is different (both in what it represents and the magnitude of the data).
I would ...
11
votes
8answers
15k views
How to prevent the floating layout wrapping when firefox zoom is reduced
Given the following HTML. It display two columns: #left, #right. Both are fixed width and have 1px borders. Width and borders equal the size of upper container: #wrap.
When I zoom out Firefox 3.5.2 ...
11
votes
1answer
10k views
Silverlight 3 - ScaleTransform or other method to zoom in a Canvas?
I need to be able to zoom in and out of a Canvas using the mousewheel. I have successfully set up the mouse wheel handlers and am currently using a ScaleTransform to apply the zoom; however, the ...
11
votes
2answers
1k views
How can I group MKAnnotations automatically regarding zoom level?
if the user zooms out on a MKMapView, i want MKAnnotations which are near to each other automatically grouped into one "group" annotation.
if the user zooms back in, the "group" annotation should be ...
10
votes
4answers
1k views
is there a library that sticks a zoom in/out button over an image and allows incremental + and -
is there any library or component that allows photoshop or pdf style zooming where i have images that i want users to be able to click to zoom in and out and i want to support being able to zoom in a ...
10
votes
2answers
9k views
Disable pinch zoom in WebView?
I'm building an app that displays some content in a WebView. I'm styling this content to fit the screen and no zooming is needed. Is there a way do turn off the zooming features of a WebView?
10
votes
4answers
17k views
How can I zoom a <div> in Firefox and Opera?
How can I zoom a <div> in Firefox and Opera?
The zoom property is working in IE, Google Chrome and Safari, but it’s not working in Firefox and Opera.
Is there any method for adding this ...
10
votes
4answers
8k views
Zoom in Java Swing application
I am looking for ways to zoom in a Java Swing application. That means that I would like to resize all components in a given JPanel by a given factor as if I would take an screenshot of the UI and just ...
10
votes
7answers
8k views
Min/max zoom level in OpenLayers
I'm using OpenLayers to display a map in a web page. I am using tiles from CloudMade, but the same issues occur with the Mapnik tiles from OpenStreetMap.
I'm trying to restrict the map so that the ...
10
votes
1answer
872 views
iPad Zoom Scale Detection
I'm trying to find a way to detect how zoomed in someone is on a web app so that when they click to pull up a menu, the menu stays the same size regardless of the zoom. To do that, I need to be able ...
10
votes
3answers
511 views
Get webpage center coordinates on tablet devices using JavaScript
I'm trying to compute the viewport geometric center on a webpage, rendered with Tablet devices (iOS and Android), ie the actual CENTER of the viewport (what you see) according to current translation ...
10
votes
3answers
1k views
How can I make a SurfaceView larger than the screen?
I would like to effectively make a simple digital zoom for the camera preview, so I thought I would simply resize my SurfaceView to be larger than the screen. Other questions (such as 3813049) seem ...
9
votes
4answers
6k views
Turn off Zooming in UIScrollView
Does anyone know a way to temporarily turn off zooming when using a UIScrollView?
I see that you can disable scrolling using the following:
self.scrollView.scrollEnabled = false;
but I'm not ...
9
votes
3answers
5k views
how to make mapview zoom to 5 mile radius of current location
I know its a very common issue but I am not getting the exact answer for this thing.
How to make MKMapView defaults to a zoom of a 5 mile radius of current location.
Thanks in advance.
9
votes
7answers
7k views
How to implemennt OnZoomListener on MapView
I would like to have onZoomListener on my MapView.
The code below is what I have done. It registers if zoom buttons are tapped. Since all new phones now supports pinch to zoom, this is useless. Does ...
9
votes
2answers
1k views
How disable the tip toast message that sometimes appears with the zoom controls in a WebView?
I haven't tested this on any other devices but on a 2.1 device, in a WebView with the zoom controls turned on, a toast message sometimes comes up that says something like "Tip: double tap to zoom in ...
9
votes
4answers
8k views
How can I use JavaScript to set the zoom level on mobile safari?
How can I use JavaScript to set the zoom level on mobile safari?
9
votes
3answers
650 views
UIScrollView Zoom Does Not Work With Autolayout
Zooming with UIScrollView using a strictly autolayout environment does not seem to work.
This is especially frustrating because the iOS 6 release notes certainly lead me to believe it should when the ...
9
votes
3answers
2k views
Draw Rectangle Over ImageView for highlight that can be zoom in-out in android
I have been refer this example from SO below are they.
1.Draw Line Over ImageView
2.Draw Picture Over ImageView
3.I have use this ImageView Class for my image to become zoom in-out Image Pinch zoom ...
9
votes
3answers
312 views
Zooming out on Browser causes styling issues
When zooming out on Firefox (and most other browsers), the layout of the right side-bar and the top menu breaks. The side-bar jumps to the bottom of the page. To replicate this issue, please visit the ...
9
votes
3answers
863 views
How to draw a circle after zoom in android
I am using Image view and drawing overlay image using layerDrawable.
I have used two bitmaps original and myBitmap.
After zoom I am not able draw circle in correct location, it's drawn in different ...
8
votes
1answer
3k views
complete styles for cross browser CSS zoom
I am finding it hard to get fully cross browser CSS zoom properties ..what I've is only these
zoom: 2;
-moz-transform: scale(2);
8
votes
1answer
3k views
Auto-size zoom on Google Maps in java? (depending android screen resolution)
i've got 2 GeoPoints given to show them on the map with markers...
so far so good...
how can I get the optimum zoom level for the MapController in order to focus the middle of both points, but also ...
8
votes
2answers
7k views
Disable double-tap “zoom” option in browser on touch devices
I want to disable the double-tap zoom functionality on specified elements in the browser (on touch devices), without disabling all the zoom functionality.
For example: One element can be tapped ...
8
votes
1answer
2k views
Javascript Image Pan / Zoom
By combining some CSS and Jquery UI / draggable I have created the ability to pan an image and with a little extra JS you can now zoom the image.
The problem I am having is that, if you zoom in the ...

