I would like to let users add custom markers on a map with a description for each marker. Any tips, links to any tutorials would be really useful.
Thank you!
|
I would like to let users add custom markers on a map with a description for each marker. Any tips, links to any tutorials would be really useful. Thank you! |
||||
|
|
|
You can register a function to 'click' event on your map. When the user click on it, the mark is added automatically. Try something like this:
Pretty simple, but I think that you can understand it :) |
||||
|
|
|
i tried @Fran 's solution but it didnt work for me. so i adapted this example from openlayers so that i could accomplish 2 things:
there is something that you need to be aware of regarding the TRANSFORM method for LonLat as used in this simple example: when you apply [ .transform(projection1, projection2) ] to any LonLat, ALL LonLat objects are transformed. play around with the order of certain commands and you will see what i mean. for draggable markers, this example has it all |
|||||||
|
|
The best source for answering such a question is OpenLayers Examples Page. Try to search for 'Marker' and you will find several examples, like this one: Markers Example Good luck! |
|||||
|