Changeset 7740


Ignore:
Timestamp:
Apr 13, 2010, 7:54:58 PM (15 years ago)
Author:
bvdvelde
Message:

Cirkel word toegevoegd met mouseOver en verwijdered met mouseOut = Blije Bart! Het werkt!

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/map/inc/overlay.js

    r7710 r7740  
    88var pos;
    99var point;
     10var range = 500;
    1011
    11 /*
    1212        function nodeAdd() {
    1313          if (GBrowserIsCompatible()) {
     
    2121                        });
    2222
     23          //Added mouseover listener that calls on our mouseOver function when the mouse moves over a marker on the map
     24        GEvent.addListener(marker, "mouseover", function() {
     25          map.addOverlay(cirkel);;
     26        });
     27               
     28                        GEvent.addListener(marker, "mouseout", function() {
     29          map.removeOverlay(cirkel);
     30        });
    2331
    24                
     32
     33       
    2534
    2635      GPolygon.Shape = function(point,r1,r2,r3,r4,rotation,vertexCount,  strokeColour,strokeWeight,Strokepacity,fillColour,fillOpacity,opts,tilt) {
     
    5665         
    5766          //   http://econym.org.uk/gmap/eshapes.htm voorbeeld.
     67          // de locatie van de cirkel
    5868                var point = new GLatLng(52.162687, 4.493294);
    59       map.addOverlay(GPolygon.Circle(point,500,"#000000",1,1,"#00ff00",0.5));
     69                                                                        // locatie, doorsnee (in meters), kleur omtrek, dikte omtrek, doorzichtigheid opvulling, kleur opvulling, doorzichtigheid.
    6070                        map.addOverlay(marker);
     71                cirkel = new GPolygon.Circle(point,range,"#000000",1,1,"#00ff00",0.5)
    6172               
    6273          }
    6374        }
    6475       
     76                //Our mouseover function
     77        /*function mouseOver(dekking)
     78        {
     79                //For now we only post the id(We made ourself in kmlHandler) and the name of the node
     80                      map.addOverlay(GPolygon.Circle(point,500,"#000000",1,1,"#00ff00",0.5));
     81                //We will replace this function with a httprequest to a php file in the future
     82        }
    6583        */
    6684       
     
    6987       
    7088       
     89       
     90       
     91       
Note: See TracChangeset for help on using the changeset viewer.