vectorToPolar static method
Implementation
static ILatLng vectorToPolar(Vector3 i) {
final lat = math.atan2(i.z, math.sqrt(i.x * i.x + i.y * i.y));
final lng = math.atan2(i.y, i.x);
return LatLngInfo(lat.degrees, lng.degrees, MarkerId(''));
}