Very simple question, how can I create a draggable marker in an OpenLayers map, and get the latlon when its been dragged. From google, it seems that you can have draggable vectors, but not draggable markers.

I've seen some references to OpenLayers.Control.DragMarker, but this doesn't seem to be in the "core" library. It's used in this example but that seems to be using a custom OpenLayers JS file, so I have no idea how to go about including that in my code.

Code thus far (to add a simple marker):

var layer = new OpenLayers.Layer.TMS( "TMS The Layer","",
    {  url: '', serviceVersion: '.', layername: '.', alpha: true,
        type: 'png', getURL: overlay_getTileURL 
    });

map.addLayers([layer]);


    var markers = new OpenLayers.Layer.Markers( "Markers" );
    map.addLayer(markers);
    var lonLat = new OpenLayers.LonLat( -100 ,100 );
    markers.addMarker(new OpenLayers.Marker(lonLat));
link|improve this question

74% accept rate
feedback

2 Answers

up vote 2 down vote accepted

I've done that, but I can't find that code now. Take a look at this OpenLayers Example:

Drag Feature

link|improve this answer
Thanks. Looks like I can work with something like that, I'll give it a go – Matt Roberts Jan 4 '11 at 8:25
Great, try it out and decide which answer that deserves the "solution" mark. ;-) – Niklas Ringdahl Jan 4 '11 at 10:17
Have you tried this yet? – Niklas Ringdahl Feb 10 '11 at 17:52
Yep, and using "features" as used in this example is indeed the correct way to do this. Thnx – Matt Roberts Feb 15 '11 at 10:12
feedback

Can you change the markers with features? look this link

link|improve this answer
I'd rather stick with simple markers if possible, unless this isn't supported – Matt Roberts Dec 7 '10 at 16:26
feedback

Your Answer

 
or
required, but never shown

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