I need to know exact point that was clicked on a feature. Using SelectFeature I can get info about which feature was clicked but there is no info about a location on the map.
Here is the code that creates a listner function:
select = new OpenLayers.Control.SelectFeature(
[vectorLayer],
{
clickout: false, toggle: false,
multiple: false, hover: false
}
);
osMap.addControl(select);
and here is my listener's definition:
vectorLayer.events.on({
"featureselected": function(e) {
//here I need to get XY
//something like the code below
//(it doesn't work but clearly explains what my idea is)
var lonlat = osMap.getLonLatFromViewPortPx(e.xy);
}
});
Thanks