A simple location picker widget for Pluto.jl notebooks. It creates an interactive map using Leaflet.
PlutoMapPicker is a package for Julia. It is is designed to be used in Pluto notebooks, but it is possible you find a use for it outside of Pluto.
To install:
using Pkg
Pkg.add("PlutoMapPicker")
PlutoMapPicker is designed to be simple to use. Basic usage looks like this:
using PlutoMapPicker
# to pick a single location
@bind place MapPicker(0.0, 0.0, 1)
# to pick multiple locations
@bind places MapPickerMultiple(0.0, 0.0, 1)
See the docstrings in map-picker.jl for more detailed documentation.
This package is shared under an MIT licence. See LICENSE for more information.