Changes between Initial Version and Version 1 of CodeSamples/JavaScript/CustomCursors


Ignore:
Timestamp:
03/18/08 08:52:05 (17 years ago)
Author:
ksgeograf
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TabularUnified CodeSamples/JavaScript/CustomCursors

    v1 v1  
     1{{{
     2
     3[[PageOutline]]
     4
     5This 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
     11This 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.
     12The 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 ==
     15The javascript/html for the AJAX viewer can be found in the WebExtensions installation directory, which is usually at:
     16C:\Program Files\MapGuideOpenSource\WebServerExtensions\www\viewerfiles
     17
     18The first file to modify is the "toolbar.templ", which has code for handling button clicks on the toolbar.
     19Simply add the folowing code inside the body tag:
     20
     21{{{
     22#!text/html
     23<script type="text/javascript">
     24/* Custom icon handler */
     25function 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
     51Inside the same file is the actual handler for button clicks, called !OnCommandExecuted.
     52Modify !OnCommandExecuted to also change the cursor:
     53{{{
     54#!text/html
     55function OnCommandExecuted(action)
     56{
     57        changeIcon(action)
     58        .....
     59        .....
     60        .....
     61}
     62}}}
     63
     64Finally, place the .cur files in the folder where the viewer files reside, or change the path int the !changeIcon method above.
     65The cursor files are attached to this post.
     66
     67Original code by Jackie Ng.