Everything in the wasm implementation works except for the get_coordinates function. This is because of wasm limitations making it hard to wait for a closure to be called and to retrieve data from that closure. (turning something async into non-async)
At this time, I do not have a solid idea of how to work around this issue.
Everything in the wasm implementation works except for the
get_coordinates
function. This is because of wasm limitations making it hard to wait for a closure to be called and to retrieve data from that closure. (turning something async into non-async)At this time, I do not have a solid idea of how to work around this issue.