Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMadhura Jayaratne <madhura.cj@gmail.com>2013-01-19 05:03:52 +0400
committerMadhura Jayaratne <madhura.cj@gmail.com>2013-01-19 05:03:52 +0400
commit5c368951eecfc4ba7becea3489f9e900ed70a4c5 (patch)
treee14fb55aba63d27d8bde9a77c3fa218cbaeac0a1 /js/tbl_gis_visualization.js
parentb85d8b7fcc15661caec930d3c08e26e0027451a7 (diff)
Use constants
Diffstat (limited to 'js/tbl_gis_visualization.js')
-rw-r--r--js/tbl_gis_visualization.js31
1 files changed, 16 insertions, 15 deletions
diff --git a/js/tbl_gis_visualization.js b/js/tbl_gis_visualization.js
index 2e0ab1466c..af7e89be0a 100644
--- a/js/tbl_gis_visualization.js
+++ b/js/tbl_gis_visualization.js
@@ -8,6 +8,7 @@
* @requires jquery/jquery.event.drag-2.0.js
*/
+var zoomFactor = 1.5;
var x = 0;
var default_x = 0;
var y = 0;
@@ -219,17 +220,17 @@ AJAX.registerOnload('tbl_gis_visualization.js', function() {
var relCoords = getRelativeCoords(event);
if (delta > 0) {
//zoom in
- scale *= 1.5;
+ scale *= zoomFactor;
// zooming in keeping the position under mouse pointer unmoved.
- x = relCoords.x - (relCoords.x - x) * 1.5;
- y = relCoords.y - (relCoords.y - y) * 1.5;
+ x = relCoords.x - (relCoords.x - x) * zoomFactor;
+ y = relCoords.y - (relCoords.y - y) * zoomFactor;
zoomAndPan();
} else {
//zoom out
- scale /= 1.5;
+ scale /= zoomFactor;
// zooming out keeping the position under mouse pointer unmoved.
- x = relCoords.x - (relCoords.x - x) / 1.5;
- y = relCoords.y - (relCoords.y - y) / 1.5;
+ x = relCoords.x - (relCoords.x - x) / zoomFactor;
+ y = relCoords.y - (relCoords.y - y) / zoomFactor;
zoomAndPan();
}
return true;
@@ -257,24 +258,24 @@ AJAX.registerOnload('tbl_gis_visualization.js', function() {
});
$('#placeholder').live('dblclick', function(event) {
- scale *= 1.5;
+ scale *= zoomFactor;
// zooming in keeping the position under mouse pointer unmoved.
var relCoords = getRelativeCoords(event);
- x = relCoords.x - (relCoords.x - x) * 1.5;
- y = relCoords.y - (relCoords.y - y) * 1.5;
+ x = relCoords.x - (relCoords.x - x) * zoomFactor;
+ y = relCoords.y - (relCoords.y - y) * zoomFactor;
zoomAndPan();
});
$('#zoom_in').live('click', function(e) {
e.preventDefault();
//zoom in
- scale *= 1.5;
+ scale *= zoomFactor;
width = $('#placeholder svg').attr('width');
height = $('#placeholder svg').attr('height');
// zooming in keeping the center unmoved.
- x = width / 2 - (width / 2 - x) * 1.5;
- y = height / 2 - (height / 2 - y) * 1.5;
+ x = width / 2 - (width / 2 - x) * zoomFactor;
+ y = height / 2 - (height / 2 - y) * zoomFactor;
zoomAndPan();
});
@@ -289,13 +290,13 @@ AJAX.registerOnload('tbl_gis_visualization.js', function() {
$('#zoom_out').live('click', function(e) {
e.preventDefault();
//zoom out
- scale /= 1.5;
+ scale /= zoomFactor;
width = $('#placeholder svg').attr('width');
height = $('#placeholder svg').attr('height');
// zooming out keeping the center unmoved.
- x = width / 2 - (width / 2 - x) / 1.5;
- y = height / 2 - (height / 2 - y) / 1.5;
+ x = width / 2 - (width / 2 - x) / zoomFactor;
+ y = height / 2 - (height / 2 - y) / zoomFactor;
zoomAndPan();
});