Depends on what happened to the Time Machine disk when it was sync'd to Google Drive. Like Barney-15E states, if the NAS backup was a sparse disk image and it wasn't altered when sync'd to Google then it might work. However, my guess is that the data was sync'd but not the disk layout format. Depends on how the Google Sync worked. HFS+ Time Machine uses hard links while APFS Time Machine uses snapshots.
A sparse disk image is more like an App Bundle in that it looks like this outside of macOS when I list the contents on my Linux with ZFS NAS.
/capsule
└── timemachine
├── jbrickley
├── M1.sparsebundle
│ ├── bands
│ ├── com.apple.TimeMachine.MachineID.bckup
│ ├── com.apple.TimeMachine.MachineID.plist
│ ├── com.apple.TimeMachine.Results.plist
│ ├── com.apple.TimeMachine.SnapshotHistory.plist
│ ├── Info.bckup
│ ├── Info.plist
│ ├── mapped
│ └── token
└── MacPro.sparsebundle
├── bands
├── com.apple.TimeMachine.MachineID.bckup
├── com.apple.TimeMachine.MachineID.plist
├── com.apple.TimeMachine.Results.plist
├── com.apple.TimeMachine.SnapshotHistory.plist
├── Info.bckup
├── Info.plist
└── token
The "bands" folder contains equally sized file chunks with unique file names so when the disk image grows it adds more bands. If you delete data from a sparse image bundle you need to compress it to free up the space. Doing so will remove unused band files. When you mount the disk image on macOS you see the actual contents.
/Volumes/Backups of M1
├── 2021-08-16-075300.previous
│ ├── ContentCache
│ │ ├── Icon\r
│ │ └── Library
│ └── Data
│ ├── Applications
│ ├── Icon\r
│ ├── Library
│ ├── System
│ ├── Users
│ ├── Volumes
│ ├── cores
│ ├── mnt
│ ├── opt
│ ├── private
│ ├── sw
│ ├── usr
│ └── ~
└── backup_manifest.plist
If you can see folders such as /Applications, /Users, etc. on your USB drive copy from Google Drive. Then you will need to manually copy the data to restore it. However, if you see the sparse image bands, well that's a problem. You might be able to create a new sparse image and manually copy the contents to it then cross your fingers that it will work.