fix geojson, classic trolling with order of coordinates
This commit is contained in:
parent
c38e90ac07
commit
11da0f646c
1 changed files with 3 additions and 2 deletions
|
|
@ -281,8 +281,9 @@ let marker_to_geojson marker =
|
||||||
}
|
}
|
||||||
|}
|
|}
|
||||||
(*TODO escape in content ?? *)
|
(*TODO escape in content ?? *)
|
||||||
(Float.to_string lat)
|
(* geojson use lng lat, and not lat lng*)
|
||||||
(Float.to_string lng) (String.escaped content)
|
(Float.to_string lng)
|
||||||
|
(Float.to_string lat) (String.escaped content)
|
||||||
|
|
||||||
let view_user_plant_list nick =
|
let view_user_plant_list nick =
|
||||||
let plant_id_list =
|
let plant_id_list =
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue