Mercurial > hg > orthanc-stone
diff Applications/StoneWebViewer/WebApplication/app.js @ 1993:317a53d4fdc6
added magnifying glass
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Mon, 31 Oct 2022 22:19:57 +0100 |
parents | e8b9a2ba1df1 |
children | 6e4ef6e3b2bf |
line wrap: on
line diff
--- a/Applications/StoneWebViewer/WebApplication/app.js Mon Oct 31 21:07:36 2022 +0100 +++ b/Applications/StoneWebViewer/WebApplication/app.js Mon Oct 31 22:19:57 2022 +0100 @@ -50,6 +50,7 @@ var MOUSE_TOOL_CREATE_ELLIPSE_PROBE = 10; // New in 2.4 var MOUSE_TOOL_CREATE_RECTANGLE_PROBE = 11; // New in 2.4 var MOUSE_TOOL_CREATE_TEXT_ANNOTATION = 12; // New in 2.4 +var MOUSE_TOOL_MAGNIFYING_GLASS = 13; // New in 2.4 function getParameterFromUrl(key) { @@ -113,6 +114,9 @@ else if (config == "Crosshair") { return stone.WebViewerAction.CROSSHAIR; } + else if (config == "MagnifyingGlass") { + return stone.WebViewerAction.MAGNIFYING_GLASS; + } else { alert('Unsupported mouse action in the configuration file: ' + config); return stone.WebViewerAction.PAN;