I am thinking of using the Google Document Viewer to show PDF files that are hosted by our company server.
The scenario is:
- A webpage will contain a menu with menu items that are actually different pages of a PDF file.
- After clicking a menu item, that particular page from the pdf will be displayed on that same web page
- This project is targeted for mobile devices (iPad, for now)
Now, I am using an iFrame like below:
<iframe id="iframe1" width="100%" height="800px" src="http://docs.google.com/viewer?url=http://cb.vu/unixtoolbox.pdf&embedded=true"></iframe>
But I don't know if linking to a specific page is possible or Google would like that because I tried the solutions posted on how to open specific page on Google's docs viewer and http://googlesystem.blogspot.com/2009/11/link-to-page-in-googles-document-viewer.html but all of them seem to be outdated.
Is this even possible? Thanks for any help.