polygonCoordToLatLng method
Implementation
LatLng? polygonCoordToLatLng(double x, double y, {double? z}) {
try {
var point = lambert.Point(y, x, 0.0);
var result = point.convert(lambert.Zone.L93).degree();
return LatLng(result.y, result.x);
} catch (e, s) {
_debugGeoJsonUtilsPrint("β Cant parse poly to coords: $e");
_debugGeoJsonUtilsPrint("π Trace: $s \n π");
}
return null;
}