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