Overview

On this page, you can know how to embed product viewer on another website and usage the parameters of each content.


Contents

Archisketch Dashboard provides 3 types of model viewer(3D/360°) & additional AR content.
If you wonder about embedding methods, please refer to the content below.


How to create model-viewer?

First, Upload 3D modelings on [Archisketch Dashboard > Enterprise Library].

Then click the [Generate 3D/AR Viewer] button on product detail page.


How to embed model-viewer?

If you copy the content link after checking the content on the Dashboard, you can insert it into the website as shown below.

(If you are now using website service(Wix, Shopify, Squarespace ...etc) and your website service provides the embed function, please follow their embed guide.)

How to insert by using [HTML > embed tag]

<!DOCTYPE html>
<html>
<body>

<h1>You can insert project contents by using [HTML > Embed Tag].</h1>

<embed
 type="text/html"
 src="Please enter content URL on src field."
 width="Please enter content width."
 height="Please enter content height."
 >
    
</body>
</html>


How to insert by using [HTML > iframe tag]

<!DOCTYPE html>
<html>
<body>
 
 <iframe
   title="You can put an Iframe in this way."
   src="Please enter content URL on src field."
	 width="Please enter content width."
	 height="Please enter content height."
 >
 </iframe>
     
</body>
</html>