leaflet/src/ev.ml

13 lines
189 B
OCaml
Raw Normal View History

2022-04-07 14:45:11 +02:00
type type' = Jv.t
module Event = struct
(*type for simple Event *)
type t = type'
end
module Mouse = struct
type t = type'
let latlng e = Latlng.of_jv_t @@ Jv.get e "latlng"
end