Metadata-Version: 2.4
Name: folium-coord_input-plugin
Version: 0.1
Summary: Add input form to the map for entering coordinates and placing markers at those locations
License-Expression: MIT
Requires-Python: >=3.12
Requires-Dist: branca
Requires-Dist: folium
Description-Content-Type: text/markdown

# folium-coord_input-plugin

Add input form to the map for entering coordinates and placing markers at those locations.
Supports marker removal.

![](pics/example.png)

## Installation

```bash
pip install folium-coord_input-plugin
```

## Examples

```python
import folium

from folium_coord_input_plugin import CoordinateInput

m = folium.Map([45.5, -122.3], zoom_start=13)

# Defaults
CoordinateInput().add_to(m)

m.save('map.html')
```

```python
# With custom settings
CoordinateInput(
    position='topright',
    placeholder='Enter coordinates',
    button_text='Place Marker',
    popup_text='<b>Coordinates:</b><br>Lat: ${lat}<br>Lon: ${lng}'
).add_to(m)
```
