public async Task <ActionResult> Create([FromBody] ObjectCreateRequest request)
        {
            // Thêm object
            if (!ModelState.IsValid)
            {
                return(BadRequest(ModelState));
            }
            var result = await _objectService.Create(request);

            // Thêm object thành công
            // Tính toán x - y - z  dựa vào lng - lat
            // var x = (int)(Math.Floor((cliente.Location.Lng + 180.0) / 360.0 * (1 << cliente.MinZoom)));
            // var y = (int)Math.Floor((1 - Math.Log(Math.Tan(ToRadians(cliente.Location.Lat)) + 1 / Math.Cos(ToRadians(cliente.Location.Lng))) / Math.PI) / 2 * (1 << cliente.MinZoom));
            /// Kiểm tra xem nếu mà x - y - z == null thì thêm mới x - y - z đồng thời add id object

            // x-y-z đã == trong bảng tile thì chỉ việc update id object vào bảng tile

            return(Ok(result));
        }