Thanks,
I have been able to resolve my issue using the code in the link you
sent me.
However, i was falling foul of 'e' being undefined in IE and so had to
declare a variable like so...
//IE workaround below for trapping window event
if(typeof(e)=="undefined")
var ev = window.event;
else
var ev = e;
All okay now.
Thanks
On Mar 12, 2:20 pm, Marcelo <[email protected]> wrote:
> On Mar 12, 3:05 pm, parky128 <[email protected]> wrote:
>
> > Hi,
>
> > Is it possible to determine if the Shift key is pressed during a map
> > click event?
>
> Everything is possible!
>
> This example does that, but with marker
> clicks:http://maps.forum.nu/temp/gm_control_click.html
>
> --
> Marcelo -http://maps.forum.nu
> --
>
>
>
> > I have setup a listener as follows:
>
> > GEvent.addListener(this._map, 'click', this.MapClickHandler);
>
> > With the handler below:
>
> > MapClickHandler: function(overlay,latlng,overlatlng) {
>
> > //Shift key detection...
>
> > }
>
> > Anyone out there achieved this?
>
> > Thanks,
> > Rob
--
You received this message because you are subscribed to the Google Groups
"Google Maps API" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-maps-api?hl=en.