-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathjquery-svgpan.js
376 lines (314 loc) · 14.2 KB
/
jquery-svgpan.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
/**
THIS LICENSE IS FOR JQUERY-SVGPAN. The original SVGPan library,
from which it derived, is governed by the second license below.
Copyright 2012 John Krauss. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided
with the distribution.
THIS SOFTWARE IS PROVIDED BY JOHN KRAUSS ''AS IS'' AND ANY EXPRESS
OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL JOHN KRAUSS OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
DAMAGE.
The views and conclusions contained in the software and
documentation are those of the authors and should not be
interpreted as representing official policies, either expressed or
implied, of John Krauss.
**/
// SVGPan library 1.2.2 license and documentation:
/**
* SVGPan library 1.2.2
* ======================
*
* Given an unique existing element with id "viewport" (or when missing, the
* first g-element), including the the library into any SVG adds the following
* capabilities:
*
* - Mouse panning
* - Mouse zooming (using the wheel)
* - Object dragging
*
* You can configure the behaviour of the pan/zoom/drag with the variables
* listed in the CONFIGURATION section of this file.
*
* Known issues:
*
* - Zooming (while panning) on Safari has still some issues
*
* Releases:
*
* 1.2.2, Tue Aug 30 17:21:56 CEST 2011, Andrea Leofreddi
* - Fixed viewBox on root tag (#7)
* - Improved zoom speed (#2)
*
* 1.2.1, Mon Jul 4 00:33:18 CEST 2011, Andrea Leofreddi
* - Fixed a regression with mouse wheel (now working on Firefox 5)
* - Working with viewBox attribute (#4)
* - Added "use strict;" and fixed resulting warnings (#5)
* - Added configuration variables, dragging is disabled by default (#3)
*
* 1.2, Sat Mar 20 08:42:50 GMT 2010, Zeng Xiaohui
* Fixed a bug with browser mouse handler interaction
*
* 1.1, Wed Feb 3 17:39:33 GMT 2010, Zeng Xiaohui
* Updated the zoom code to support the mouse wheel on Safari/Chrome
*
* 1.0, Andrea Leofreddi
* First release
*
* This code is licensed under the following BSD license:
*
* Copyright 2009-2010 Andrea Leofreddi <[email protected]>. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are
* permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
* of conditions and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY Andrea Leofreddi ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Andrea Leofreddi OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* The views and conclusions contained in the software and documentation are those of the
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of Andrea Leofreddi.
*/
/*global define, jQuery, window*/
(function (factory) {
"use strict";
if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module.
define(['jquery'], factory);
} else {
// Browser globals
factory(jQuery);
}
}(function ($) {
"use strict";
var NONE = 0,
PAN = 1,
DRAG = 2,
init = function (root, svgRoot, enablePan, enableZoom, enableDrag, zoomScale) {
var state = NONE,
stateTarget,
stateOrigin,
stateTf,
svgDoc = root,
$root = $(root),
$parent = $root.parent(),
recentOffset = $root.offset(),
// FF sometimes doesn't calculate this anything near correctly
// for SVGs.
offsetIsBroken = Math.abs($root.offset().left) > 1e5,
isMouseOverElem = false,
/**
* Dumps a matrix to a string (useful for debug).
*/
dumpMatrix = function (matrix) {
var s = "[ " + matrix.a + ", " + matrix.c + ", " + matrix.e + "\n " + matrix.b + ", " + matrix.d + ", " + matrix.f + "]";
return s;
},
/**
* Instance an SVGPoint object with given event coordinates.
*/
getEventPoint = function (evt) {
var p = root.createSVGPoint(),
offsetX = evt.offsetX,
offsetY = evt.offsetY,
offset,
ctm,
matrix;
if (typeof offsetX === "undefined" || typeof offsetY === "undefined") {
offset = offsetIsBroken ? $parent.offset() : recentOffset;
offsetX = evt.pageX - offset.left;
offsetY = evt.pageY - offset.top;
}
p.x = offsetX;
p.y = offsetY;
return p;
},
/**
* Sets the current transform matrix of an element.
*/
setCTM = function (element, matrix) {
var s = "matrix(" + matrix.a + "," + matrix.b + "," + matrix.c + "," + matrix.d + "," + matrix.e + "," + matrix.f + ")";
element.setAttribute("transform", s);
},
/**
* Handle mouse wheel event.
*/
handleMouseWheel = function (evt) {
if (!enableZoom) {
return;
}
if (!isMouseOverElem) {
return;
}
if (evt.preventDefault) {
evt.preventDefault();
}
evt.returnValue = false;
recentOffset = $root.offset();
var delta = evt.wheelDelta ? evt.wheelDelta / 360 : evt.detail / -9,
z = Math.pow(1 + zoomScale, delta),
g = svgRoot,
p = getEventPoint(evt),
k;
p = p.matrixTransform(g.getCTM().inverse());
// Compute new scale matrix in current mouse position
k = root.createSVGMatrix().translate(p.x, p.y).scale(z).translate(-p.x, -p.y);
setCTM(g, g.getCTM().multiply(k));
if (typeof stateTf === "undefined") {
stateTf = g.getCTM().inverse();
}
stateTf = stateTf.multiply(k.inverse());
},
/**
* Handle mouse move event.
*/
handleMouseMove = function (evt) {
if (evt.preventDefault) {
evt.preventDefault();
}
evt.returnValue = false;
var g = svgRoot,
p;
if (state === PAN && enablePan) {
// Pan mode
p = getEventPoint(evt).matrixTransform(stateTf);
setCTM(g, stateTf.inverse().translate(p.x - stateOrigin.x, p.y - stateOrigin.y));
} else if (state === DRAG && enableDrag) {
// Drag mode
p = getEventPoint(evt).matrixTransform(g.getCTM().inverse());
setCTM(stateTarget, root.createSVGMatrix().translate(p.x - stateOrigin.x, p.y - stateOrigin.y).multiply(g.getCTM().inverse()).multiply(stateTarget.getCTM()));
stateOrigin = p;
}
},
/**
* Handle mouseenter event. This has been added to stop ignoring
* inputs when the mouse is over the element.
**/
handleMouseEnter = function (evt) {
// bind our mousemove listener only when we have mouse in view
if (!isMouseOverElem) {
recentOffset = $root.offset();
$root.bind('mousemove', handleMouseMove);
isMouseOverElem = true;
}
},
/**
* Handle mouseleave event. This has been added to ignore
* inputs when the mouse is not over the element.
**/
handleMouseLeave = function (evt) {
// unbind our mousemove listener only when we no longer have mouse in view
if (isMouseOverElem) {
$root.unbind('mousemove', handleMouseMove);
isMouseOverElem = false;
}
state = NONE;
},
/**
* Handle click event.
*/
handleMouseDown = function (evt) {
if (evt.preventDefault) {
evt.preventDefault();
}
evt.returnValue = false;
//var svgDoc = evt.target.ownerDocument;
//var g = getRoot(svgDoc);
var g = svgRoot;
// Pan anyway when drag is disabled and the user clicked on an element
if (evt.target.tagName === "svg" || !enableDrag) {
// Pan mode
state = PAN;
stateTf = g.getCTM().inverse();
stateOrigin = getEventPoint(evt).matrixTransform(stateTf);
} else {
// Drag mode
state = DRAG;
stateTarget = evt.target;
stateTf = g.getCTM().inverse();
stateOrigin = getEventPoint(evt).matrixTransform(stateTf);
}
},
/**
* Handle mouse button release event.
*/
handleMouseUp = function (evt) {
if (evt.preventDefault) {
evt.preventDefault();
}
evt.returnValue = false;
//var svgDoc = evt.target.ownerDocument;
if (state === PAN || state === DRAG) {
// Quit pan mode
state = NONE;
}
};
/**
* Register handlers
*/
// MODIFICATION: registers events through jQuery
$root.bind('mouseup', handleMouseUp)
.bind('mousedown', handleMouseDown)
.bind('mouseenter', handleMouseEnter)
.bind('mouseleave', handleMouseLeave);
//if (navigator.userAgent.toLowerCase().indexOf('webkit') >= 0) {
window.addEventListener('mousewheel', handleMouseWheel, false); // Chrome/Safari/others
window.addEventListener('DOMMouseScroll', handleMouseWheel, false); // Firefox
};
/**
Enable SVG panning on an SVG element.
@param viewportId the ID of an element to use as viewport for pan. Required.
@param enablePan Boolean enable or disable panning (default enabled)
@param enableZoom Boolean enable or disable zooming (default enabled)
@param enableDrag Boolean enable or disable dragging (default disabled)
@param zoomScale Float zoom sensitivity, defaults to .2
**/
$.fn.svgPan = function (viewportId, enablePan, enableZoom, enableDrag, zoomScale) {
enablePan = typeof enablePan !== 'undefined' ? enablePan : true;
enableZoom = typeof enableZoom !== 'undefined' ? enableZoom : true;
enableDrag = typeof enableDrag !== 'undefined' ? enableDrag : false;
zoomScale = typeof zoomScale !== 'undefined' ? zoomScale : 0.2;
return $.each(this, function (i, el) {
var $el = $(el),
svg,
viewport;
// only call upon elements that are SVGs and haven't already been initialized.
if ($el.is('svg') && $el.data('SVGPan') !== true) {
viewport = $el.find('#' + viewportId)[0];
if (viewport) {
init($el[0], viewport, enablePan, enableZoom, enableDrag, zoomScale);
} else {
throw "Could not find viewport with id #" + viewportId;
}
}
});
};
}));