| 1 | {{{ |
| 2 | |
| 3 | [[PageOutline]] |
| 4 | |
| 5 | This page is one of the !MapGuide Community CodeSamples. Visit the CodeSamples page to view more! |
| 6 | |
| 7 | }}} |
| 8 | |
| 9 | == Displaying custom cursors in the AJAX viewer == |
| 10 | |
| 11 | This page describes how to modify the AJAX viewer for WebLayouts to display a custom cursor when the user has selected one of the zoom tools. |
| 12 | The code and files here have been posted to the !MapGuide mailing list, but frequent requests indicate that a more formal description will be appreciated. |
| 13 | |
| 14 | == Modifying the AJAX viewer == |
| 15 | The javascript/html for the AJAX viewer can be found in the WebExtensions installation directory, which is usually at: |
| 16 | C:\Program Files\MapGuideOpenSource\WebServerExtensions\www\viewerfiles |
| 17 | |
| 18 | The first file to modify is the "toolbar.templ", which has code for handling button clicks on the toolbar. |
| 19 | Simply add the folowing code inside the body tag: |
| 20 | |
| 21 | {{{ |
| 22 | #!text/html |
| 23 | <script type="text/javascript"> |
| 24 | /* Custom icon handler */ |
| 25 | function changeIcon(action){ |
| 26 | var cururl = "http://localhost/mapguide/stdicons/"; |
| 27 | var map = parent.mapFrame.document.getElementById("map"); |
| 28 | switch(action) |
| 29 | { |
| 30 | case 1: |
| 31 | map.style.cursor = cururl + "icon_pan.cur" |
| 32 | break; |
| 33 | case 7: |
| 34 | map.style.cursor = cururl + "icon_zoomin.cur" |
| 35 | break; |
| 36 | case 8: |
| 37 | map.style.cursor = cururl + "icon_zoomout.cur" |
| 38 | break; |
| 39 | case 9: |
| 40 | map.style.cursor = cururl + "icon_zoomrect.cur" |
| 41 | break; |
| 42 | default: |
| 43 | map.style.cursor = 'default'; |
| 44 | break; |
| 45 | } |
| 46 | |
| 47 | } |
| 48 | </script> |
| 49 | }}} |
| 50 | |
| 51 | Inside the same file is the actual handler for button clicks, called !OnCommandExecuted. |
| 52 | Modify !OnCommandExecuted to also change the cursor: |
| 53 | {{{ |
| 54 | #!text/html |
| 55 | function OnCommandExecuted(action) |
| 56 | { |
| 57 | changeIcon(action) |
| 58 | ..... |
| 59 | ..... |
| 60 | ..... |
| 61 | } |
| 62 | }}} |
| 63 | |
| 64 | Finally, place the .cur files in the folder where the viewer files reside, or change the path int the !changeIcon method above. |
| 65 | The cursor files are attached to this post. |
| 66 | |
| 67 | Original code by Jackie Ng. |