import { PhotoViewer } from '@awesome-cordova-plugins/photo-viewer/ngx';
constructor(private photoViewer: PhotoViewer) { }
...
this.photoViewer.show('https://mysite.com/path/to/image.jpg');
this.photoViewer.show('https://mysite.com/path/to/image.jpg', 'My image title', {share: false});
this.photoViewer.show('https://mysecuresite.com/path/to/image.jpg', 'My image title', {share: false, headers: '{username:foo,password:bar}'});