Hi Rick,
OK so there doesn't seem to be a bug here, just a slightly wrong metadata setup. This is my fault, since we are doing the same thing in the examples.
The problem is that your image is a multi-frame instance, and so we need to tell the WADO Image Loader to display it frame-by-frame. In the metadata you sent me, it was clear that you were setting 'url' instead of 'wadouri' for the instance. This messed up the addition of the frame parameter when creating the imageId.
Basically in the section of your Metadata JSON where you have URL for your instances, it currently looks like this:
"url": "dicomweb://localhost:8000/yourfile.dcm"
The OHIF viewer will only retrieve this single image and display it.
You should change it to this:
In this manner, the OHIF Viewer's getImageId function will properly add the '&frame=N' for your multi-frame image, and it will display properly.
Erik