I've got a question to you guys - I want to get something like this:
Fragment
in anActivity
which show a map withmarker
placed on myLatLng
position on start.- There will be an
EditText
when I can type address which should be found - Let's say I would like to search it after I click a button (cause it is easier to implement thanAutoCompleteTextView
or something like that) and create amarker
on that place what was found. - But whenever I touch or tap on this map I would like to create new
marker
(and delete the old one, there should be only one marker at a time).
Please help me with steps which should be done by me.