I am the beginner of OpenLayers.I am trying to override right click context menu on the map.Is it possible.How?If anyone have sample or examples please let me know.

Thanks for your help.

Best Regards,
Swapna.

link|improve this question
feedback

2 Answers

You can try to look at this page: Spatial Notes: Capturing right-click events in OpenLayers (not my blog). I just tested the provided code and it seems to work. Try to copy and paste the code in the initialize function of your page;

function initialize() {
   copy the code here
}

<body onload="initialize()">
etc...

Then to get the coords from the point location you can look at: How to display mouse position as tooltip in OpenLayers? and use the getLonLatFromPixel function.

var position = map.getLonLatFromViewPortPx(e.xy);
link|improve this answer
feedback

Yes it is, but has nothing to do with OpenLayers.

window.oncontextmenu = function( event ){
  alert('you clicked');  
};
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.