
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
rescript-leaflet-react
Advanced tools
Rescript bindings for React Leaflet JS
npm i rescript-leaflet-react
bsconfig.json:"bs-dependencies": [
"@rescript/react",
"rescript-leaflet-react"
]
open RescriptLeafletReact
LeafletReact moduleopen RescriptLeafletReact
let s = React.string
module EventLogger = {
@react.component
let make = () => {
open LeafletHooks
let map = useMap()
let mapEvents = useMapEvents(EventHandlers.make(
~click = (event) => {
Js.log("Mouse Click:")
Js.log(event)
},
()
))
let onSingleEvent = useMapEvent("drag", (pos) => {
Js.log("Drag Event:")
Js.log(pos)
})
Js.log("Center:")
Js.log(map.getCenter(.))
<></>
}
}
@react.component
let make = () => {
open LeafletReact
let logMouseEvent = (t) => {
Js.log(t)
}
let logPopupEvent = (t) => {
Js.log(t)
}
let logDragEvent = (t) => {
Js.log(t)
}
let bounds = create_bounds(
(39.043705, -95.692240), (40.043705, -93.692240)
)
let pathOptions = PathOptions.make(
~color="#00ff00",
()
)
<div>
<MapContainer
center={(39.043705, -95.692240)}
style={ReactDOM.Style.make(
~height = "100vh",
()
)}
zoom={3.}
>
<TileLayer
attribution={"© <a href=\"https://www.openstreetmap.org/copyright\">OpenStreetMap</a> contributors"}
url={"https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"}
/>
<EventLogger />
<Marker
position={(38.043705, -95.692240)}
eventHandlers={EventHandlers.make(
~click = logMouseEvent,
~popupopen = logPopupEvent,
~drag = logDragEvent,
()
)}
>
<Popup>
{s("You clicked on the marker")}
</Popup>
</Marker>
<Circle
center={(39.043705, -95.692240)}
radius={5000.}
pathOptions={pathOptions}
/>
<Polyline
positions={[
(39.043705, -95.692240),
(38.043705, -95.692240)
]}
/>
<Polygon
positions={[
(40.043705, -93.692240),
(39.043705, -93.692240),
(39.043705, -92.692240),
(40.043705, -93.692240),
]}
/>
<ImageOverlay
url={"http://3.bp.blogspot.com/-rtiLKRi9zNY/UpdeBJ72Z9I/AAAAAAAAFFQ/qkG2I6fWpv0/s1600/dancing-pickle-like-dancing-banana-large-color-animated.gif"}
bounds={bounds}
/>
</MapContainer>
</div>
}
This snippet of code generates this map:

This is not a complete binding, if anyone wants to chip away at the library I would happily merge it in.
Because of some weirdness with this binding and rescript's currying system, all the hook functions (getCenter, zoomIn, etc.) must be called in the uncurried way
(using func(. param) notation)
Here is a basic list of what is supported right now:
FAQs
Rescript bindings for React Leaflet
We found that rescript-leaflet-react demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.