Tagged Questions
0
votes
0answers
20 views
How to pinch a svg file in phonegap?
I have load an html page from android activity like this super.loadUrl("file:///android_asset/www/index.html");, and embedded an svg file inside a div.Now I want to use gestures to pinch that svg, any ...
0
votes
0answers
106 views
D3.js Set initial zoom level
I have several graphs set up to zoom on the container and it works great. However, on the initial load, the zoom level is way too close. Is there a method of setting the initial zoom level to avoid ...
0
votes
1answer
182 views
d3-js mouse wheel problems when activating and deactivating zoom behavior
I activate and deactivate the zoom behavior as seen in http://bl.ocks.org/benzguo/4370043 :
var zoom = d3.behavior.zoom().on("zoom", rescale)
// after adding the handler, the mouse wheel will still ...
0
votes
0answers
426 views
d3.js - Zoom and Center on Click - Map scales, points do not
I'm adapting the zoomable and clickable map found http://bl.ocks.org/mbostock/2206340 at to plot some points and do some other things. Right now, I'm trying to make it such that on the zoom and click ...
1
vote
1answer
280 views
Zoom to particular area in svg using mouse wheel
I have a simple svg map embedded in my asp.net site. I want to zoom-out and zoom-in that map using mousewheel.
I have somewhat achieved zoom functionality using mousewheel.js.
But the problem is, i ...
0
votes
1answer
244 views
d3.js keep zoomable y-axis from going below zero
I have a graph with zoom features. My main observation was that the x-axis updated its scale based on my current zoom level. I wanted the y-axis to do this too, so enabled zoom.y(y) , the undesired ...
0
votes
0answers
57 views
Zooming Point (on SVG with smartGWT)
We implemented a zoom function like the Google Maps zoom function on a existing SVG map.
That is our zoom function...
public void zoomBy(double zoomBy, int x, int y) {
...
0
votes
0answers
44 views
Problems with zooming using setViewBox and text size going to zero
I have a Raphael application where you can zoom in infinitely (zoom and pan implemented using setViewBox), and while everything else scales, the font size for labels on things is meant to stay the ...
0
votes
1answer
987 views
D3.js semantic zoom and pan example not working
I am trying to implement a version of the SVG Semantic Zoom and Pan example for D3.js, found here. I am trying to do this with a Dendrogram / tree (example here), as recommended by Mike Bostock ...
0
votes
0answers
176 views
Zooming WebView with svg inside. SVG is pixelized if zoomed
public class TWVSVGMainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
WebView webView = new WebView(this);
...
0
votes
1answer
473 views
IE10 does not scale background SVG correctly when zoomed (on Surface/Windows 8 phone)
Does anyone know if there is a workaround for this? Internet Explorer 10 and Window phone 8 are not able to correctly scale background SVG images when a user zooms. Looks like IE rasterizes the SVG on ...
0
votes
0answers
38 views
Setting x.domain with setInterval and reset the translation vector
I ask this question again, because the solution to the following thread:
Setting x.domain with setInterval,
not work in the new version of the library d3 (3.0.3), so I come to ask for some help ...
2
votes
1answer
194 views
Using Raphaël with ZPD (Zoom-Panning-Drag) plugin - Zooming doesn't go with cursor
I use Raphäel and the Raphäel Sketchpad library to create a sketchpad in the browser, which works fine. I have implemented Rapäel ZPD (https://github.com/andrewseddon/raphael-zpd) to do ...
1
vote
0answers
129 views
Zoom SVG images on iBooks
not able to zoom SVG images in iBooks for iPad (epub3.0 fixed layout) when using rect or circle:
<svg version="1.1" viewBox="0 0 2048 2048" preserveAspectRatio="xMidYMid meet">
<g ...
0
votes
1answer
158 views
create dblclick-to-select along with zoom in d3.js bubbles?
From the d3.js bubbles example I have added the zoom + pan functions. Now I want to allow users to select a bubble on desktops and touch-screens. The dblclick and touchstart seem to be consistent for ...
0
votes
3answers
1k views
Zoom event overrides Drag behavior in d3js
I'm trying to implement both dragging and zooming event handlers for a circle item using d3js. I've added behaviors for both events as given below
var circle = svg.append("circle")
.attr("fill", ...
1
vote
0answers
240 views
Show image zoom window for picture using jquery
I have SVG images on a page. When you hover over the SVG, I want to see a zoom up of the area I'm hovering over. I don't want the zoom effect window to be placed relative to my cursor. I have a box in ...
2
votes
1answer
301 views
Detecting visible nodes in d3.js force layout after zoom-pan
I use a force directed layout in d3.js once on load to position nodes and edges. Then I can zoom and pan the svg. When I zoom in I want to detect which nodes and edges are visible so I can implement ...
1
vote
0answers
76 views
Keeping the text size the same when zooming in and out
I have created svg file with line elements, and middle point of every line represents coordinate for line's name (svg text element). What is the best way to keep the size of those text elements when ...
1
vote
2answers
323 views
How do I adjust my SVG transform based on the viewport?
I'm working with the d3 library and have had success working with the chloropleth example, as well as getting a click action to zoom in to a particular state (see this question for details). In ...
0
votes
0answers
278 views
zoom and pan svg using mouse AND buttons
I'm trying to incorporate an SVG map into an HTML document, and to enable panning and zooming on the map via either mouse dragging (pan) / the mousewheel (zoom) or via buttons. I have found Javascript ...
0
votes
2answers
246 views
Raphael Elements Overlap on Zoom with controls
I am running into an issue where where my Zoom+ button does zoom the elements but they overlap as the elements grow.
Here is the link: http://jsfiddle.net/knottAverage/ArKDp/28/
Here is the ...
-1
votes
1answer
253 views
Keep text in SVG visible after zooming in
I have the following text element defined in my SVG:
var data = document.createTextNode("Testing text in SVG");
var text = document.createElementNS(xmlns, "text");
text.setAttributeNS(null, ...
-1
votes
1answer
357 views
setting viewbox coordinates to extents of svg drawing
I have a set of dynamically created svg objects. Some of them have rather complicated transformations applied to. I mean this is meaningless that I want to calculate maximum and minimums of X & Y ...
0
votes
1answer
2k views
SVG Zoom to Component
I'm trying to implement a zoom to component option where the user presses the 'e' key and it zooms right onto the component. I only want there to be one zoom level for this, since I am doing a zoom ...
0
votes
1answer
594 views
Embedding a zoom box in an SVG image
I'd like to make my SVG images interactive, with a zoom box that can be moved around by hovering or clicking the mouse in certain areas. Can this be done in a single SVG file, so that I can embed this ...
5
votes
2answers
5k views
SVG viewBox zoom in center (Raphael)
I try to zoom with mousewheel on a Raphael paper using viewBox. Here is the JSFiddle code.
it works but now i want to zoom in the center and i have no idea where to start. I guess i should change the ...
2
votes
2answers
1k views
Pan and zoom extra large images with DOM or canvas?
Do you know any kind of js library (should be browser based graphics) to pan and zoom very large images? Need to show a huge mosaic with some hover zones with tooltips.
And i think that software for ...
6
votes
2answers
4k views
Raphael paper zoom animation
I manage to do some hack in order to zoom raphael paper, as setviewbox wasn't working for me, here is the function I wrote :
function setCTM(element, matrix) {
var s = "matrix(" + matrix.a + "," ...
2
votes
1answer
233 views
How to maintain pixel when zooming into SVG canvas?
I've built a frontend tool for zooming in/out of an SVG canvas, but when I zoom, any 1px strokes increase in width (visually). Is there a svg setting that will ensure that 1px strokes remain 1px ...
2
votes
2answers
1k views
Is there a library or tool for svg or raphael that allows to pan over and zoom into drawings?
Does somebody know if there is a library (or something like a library) that allows me to create text annoted vector graphics (preferably on the basis of svg or raphael) with the feature to pan over ...
2
votes
1answer
2k views
The author of this Raphael JS extension has vanished from the face of the internet, help me with his script
The extension I'm talking about is the Raphael-zpd: http://pohjoisespoo.net84.net/src/raphael-zpd.js
/* EDIT The script is added to a Raphael document with this command var zpd = new ...
2
votes
2answers
724 views
Zooming SVG using batik?
I would like to zoom in/out on SVG file in java. I would like to do it from the program and can't find a way.
I know you can zoom in/out via mouse or keyboard but that is not what I'm looking for. ...
2
votes
2answers
3k views
Is this possible: Zoomable SVG Image Map
I would like to make a very big svg that is both a CLICKABLE image map and is ZOOMABLE. If I understand the html5 specs both of these seem possible, but no one mentions using both of these together. ...
2
votes
1answer
875 views
use viewport with svg, uiwebview iphone
in this page : http://developer.apple.com/library/safari/#documentation/appleapplications/reference/safarihtmlref/Articles/MetaTags.html
it's explain how to use viewport to define default scale in a ...
0
votes
2answers
731 views
Show a zoomed SVG at designed size
I have an SVG image which fits its parent <object> dimensions. The image is zoomed by changing its currentScale and currentTranslate properties. How can I scale the image to be shown at its ...
0
votes
1answer
572 views
Svg 1px-width line for background
I need to underline each line in a paragraph.
<p class="underline">multi-line text multi-line text multi-line text</p><br/>
<p class="underline" style="background-repeat: ...
0
votes
1answer
150 views
Is it safe to wrap all immediate children of an svg document into <g> for zooming?
In my app I load different SVG files and need to zoom them. As I see it I need to apply a transformation matrix to an element to have it zoomed, but this doesn't work on SVG element, so I need to wrap ...
3
votes
1answer
1k views
Zoom to different parts of SVG depending on mouse position
So I've found a script which seems to do just that , but it zooms a <g> that wraps whole svg contents by applying a transformation matrix to it (though it doesn't zoom in Opera because of ...
2
votes
1answer
684 views
Screenshot from WPF application as SVG / vector graphic?
is it possible to create a screenshot of a WPF application as SVG / is there some WPF built-in function to get the XAML code for the current drawn window that then can be converted to SVG? I need some ...



