Geocoder search plugin for folium with own places.
from geocoder_custom import Geocoder as Geocoder_custom
suggestions = [
{
"name": 'Im manually added',
"center": [50.27, 19.03]
},
{
"name": 'RandomPosition78',
"center": [50.10, 18.4]
}
]
Geocoder_custom(collapsed=True, add_marker=True, suggestions = suggestions).add_to(m)