Embeding a <camera>

Below are instructions on how to embed your Camera into a webpage.

Embeding with static HTML
Embeding with dynamic (async) HTML
Embeding with JS
Embeding with React

Embedding a <camera> with static HTML

First, make sure you have the cameratag.js and cameratag.css files included in the header of your site. The following <script> tag should appear at the bottom of your page's <head> tag

<script src='//www.cameratag.com/v15/js/cameratag.min.js' type='text/javascript'></script>
<link rel='stylesheet' href='//www.cameratag.com/v15/css/cameratag.css'>

Next, create a new <camera> somehwere in your <body> like the one below.

<camera id='[INSTANCE_ID]' data-app-id='[YOUR_APP_UUID]'></camera>

You will need to replace the values denoted by brackets in the above example.

You will replace [YOUR_APP_UUID] with the UUID of the App you would like to use with this <camera>. This can be found under the name of your App on any of the App pages on CameraTag.

You will replace [INSTANCE_ID] with a unique id for that instance of the <camera>. This will allow you specifically refernce that <camera> on the page.

Pleas note: Each camera on a page MUST HAVE A UNIQUE INSTANCE ID however multiple cameras on a page may be attached to the same App.

Adding a <camera> with asynchronous HTML

If you want to embed at a camera after the page has loaded simply add the <camera> element to the DOM as described in the static embed section above then call the CameraTag rescan() method:
CameraTag.scan();
This will rescan the DOM for any uninitialized CameraTag products.

How to initialize a Camera with JS

First, make sure you have the cameratag.js and cameratag.css files included in the header of your site. The following <script> tag should appear at the bottom of your page's <head> tag

<script src='//www.cameratag.com/v15/js/cameratag.min.js' type='text/javascript'></script>
<link rel='stylesheet' href='//www.cameratag.com/v15/css/cameratag.css'>

Then you can initialize a <camera> directly with JS by using the CameraTag.init() method. The method takes three parameters:

// If you have the following div:
<div id="CameraPlaceHolder"></div>

// The following JS will init a new camera and replace your div 
CameraTag.init("CameraPlaceHolder", "camera", {appUuid: "YOUR_APP_UUID", id: "myCamera"});

element_id
The ID of an element in the DOM where the <camera> should be added. This element will be replaced by the <camera>

product_name
The name of the product you wish to instantiate (in this case "camera").

options

The required options are appUUID (the UUID of your CameraTag App) and id (A unique identifier for this camera instance). Other configurations options can be see on the the configuration docs page.

How to initialize a Camera with React

<camera> tags can se inigialized with the CameraTag react module. See below:

import Camera from CameraTag;

//You can the use the component like this:
<Camera appUuid="YOUR_APP_UUID" id="myCamera"/>

There are more attributes that can be used to configure how the camera functions. You can see them all on the camera configurations docs page.