Hi @Donny_V, thanks for your message.

You’re correct, the BoundingBox property is not set automatically, but you can pass it yourself when you build the polygon. For instance (with random values):

            var polygon = GeoJson.Polygon(
                new GeoJsonObjectArgs<GeoJson3DCoordinates>
                {
                    BoundingBox = new GeoJsonBoundingBox<GeoJson3DCoordinates>(
                        GeoJson.Position(4.0, 5.0, 6.0),
                        GeoJson.Position(4.0, 5.0, 6.0))
                },
                GeoJson.Position(1.0, 2.0, 3.0),
                GeoJson.Position(4.0, 5.0, 6.0),
                GeoJson.Position(7.0, 8.0, 9.0),
                GeoJson.Position(1.0, 2.0, 3.0));