MarkerClustering icon indicating copy to clipboard operation
MarkerClustering copied to clipboard

Incorrect use of latitude/longitude in README?

Open rtcpw opened this issue 1 year ago • 0 comments

The example in README.md:

// Map to library's MapPoint<'a>
    let points : MapPoint<_VisibleChargingPoint_> [] =
        filtered
        |> Array.map (fun m -> { X = m.Lat; Y = m.Long; Data = m })

It shows X = Latitude and Y = Longitude. Shouldn't these be the other way around? Longitude are "vertical lines" so I think those are more akin to "X", while latitude are "horizontal lines" and hence "Y"?

https://en.wikipedia.org/wiki/Longitude

rtcpw avatar Sep 27 '24 19:09 rtcpw