How to get global coordinates from Unity coordinate

Is there a way to get the global map coodinates such as Google map coordinates from Unity coordinate ? Thanks.

You can get longitude and latitude by converting Unity coordinates to Earth-Centered, Earth Fixed (ECEF) used methods on the CesiumGeoreference. And then convert ECEF to longitude/latitude/height using methods on CesiumWgs84Ellipsoid. I’m not sure what you mean by Google Maps coordinates, though.