The panoramas work very well and I like being able to upload to the cloud, copy the link address, email a client the link, and they can view it. How could I have the panorama show up in a website, for instance as a post on LinkedIn or in a marketing site and not have to follow the link? When I paste the link into the post, it creates a link to the Enscape viewing site. That is, within the post, I want to view the panorama without leaving that page. (sorry to use the word "link" so much). Any help would be greatly appreciated.
Panoramas in website
- JSC
- Thread is marked as Resolved.
-
-
JSC , while you can actually host our panoramas on your own webspace (see very down below here under "For Software Developers"), I'm afraid, as far as I know LinkedIn does not support the display of panoramas.
When it comes to "marketing site", could you further elaborate on that?
Which site(s) do you mean exactly?
-
Hello Demian - Thank you for your notes. By marketing site, I mean the property developer of the project is building a website to market buildings which aren't yet built. I'd like to provide them with panoramas then can use on their website and perhaps the article you mentioned "For Software Developers" will help me with that.
-
JSC - you can put the Web Export into an iframe.
If you use the following html/script:
HTML
Display More<html> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function () { $("#enscapeframe").on("mouseenter", function() { $(this).focus(); }); }); </script> <div><label style="margin-right:5px">Some input element</label><input type="text"></input></div> <iframe id="enscapeframe" src="https://api2.enscape3d.com/v1/view/ad60f2cc-dc69-4246-a141-01d38500dbd9" width="800" height="400"></iframe> <p>Some text</p> </html>