WebAR SDK
v2.0.5
v2.0.5
  • Introduction
  • What's New?
  • GETTING STARTED
    • SignUp and Get a License
    • Manage Your Licenses
    • Download WebAR SDK
    • Installing WebAR SDK
  • INTEGRATIONS
    • A-Frame Integration
      • Build a Basic Surface Tracking Experience
      • Build a Marker Tracking Experience
      • Build a Basic Face Tracking Experience
    • Babylon.Js Integration
      • Build a Basic Surface Tracking Experience
      • Build a Basic Marker Tracking Experience
    • Unity Integration
      • Package Installation
      • Build a Basic Surface Tracking Experience
      • Build a Basic Marker Tracking Experience
      • Customize Loading Screen
      • Rotate and Zoom
      • Use Cases
      • Unity Build Settings
      • Unity Screenshot Feature
    • PlayCanvas Integration
      • Build a Basic Surface Tracking Experience
      • Build a Basic Marker Tracking Experience
    • What Makes a Good Marker
  • API
    • API Reference - Javascript
      • A-Frame Attributes
      • SDK Configuration Properties
      • Javascript Functions
    • API Reference - Unity(C#)
      • SDK Configuration Properties
      • C# Functions
    • Customization API
  • PUBLISH YOUR CREATION
    • Develop Locally
    • Launch the Experience
  • MORE INFORMATION
    • Pricing
    • FAQs
    • Release Notes
  • Support
    • Contact Support
Powered by GitBook
On this page
  • Introduction
  • Process
  • Step:1 Create an HTML File & Include the WebAR SDK
  • Step 2: Create a WebAR Scene
  • Step 3: Add a WebAR Camera
  • Step 4: Load your 3D Assets
  • Step 5: Add a WebAR Stage
  • Step 6 : Integrate Enhanced UX with Stage Cursor, Rotation, and Scaling
  • Step 7: Add a 3D Model
  • Full Source Code
  • Deployment
  • Resulting Surface Tracking Experience
  1. INTEGRATIONS
  2. A-Frame Integration

Build a Basic Surface Tracking Experience

Construction of an AR experience using SLAM

Last updated 7 months ago

Introduction

This guide walks you through the construction of a basic scene built using A-Frame and the WebAR SDK. The output will be a 3D Astronaut model fixed to the identified surface ()

To simply display 3D models no knowledge of A-Frame beyond what's outlined below is necessary. However if you want to make more advanced experiences, familiarity with A-Frame will be very helpful. You can find out more about A-Frame in their

Process

Complete the below mentioned steps to create and launch an AR experience using Blippar WebAR SDK and A-frame integration

Step:1 Create an HTML File & Include the WebAR SDK

  • Create a HTML document in your favourite editor.

  • Include AFrame Script before WebAR SDK.

  • To include the WebAR SDK in this, we drop in a <script> tag under the <head> tag pointing to the WebAR SDK.

  • The exact form of the below will look different depending on how you installed the WebAR SDK. The example which follows assumes you downloaded the WebAR SDK and extracted it so that the script file - webar-sdk.min.js and libs folder is in the same location as your HTML file. Follow the instructions in theto find the right tag for your setup.

  • Also a models folder containing a test GLB model file is assumed to be in the same location as your HTML file. To begin with this example, use this GLB model in for testing.

  • The final folder structure should look like this:

<html>
  <head>
    <title>WebAR SDK Basic Scene</title>
    <script src="https://aframe.io/releases/1.3.0/aframe.min.js"></script>
    <script src="./webar-sdk.min.js"></script>
  </head>

  <body>
  </body>
</html>
  • From Webar SDK v1.1.0-beta and above, A-frame script has to be included separately

  • Supports A-frame version 1.3.0

Step 2: Create a WebAR Scene

  • To turn a normal scene entity into a WebAR Scene we add an A-Frame <a-scene> and add a few specific components.

  • The other components will just make sure everything is setup correctly.

Remember to change the key value or you will receive an "invalid key" error when you deploy.

...

<body>

  <a-scene
    webar-scene="key: xxxxxxxx-1111-2222-3333-yyyyyyyyyyyy"
    vr-mode-ui="enabled: false"
    device-orientation-permission-ui="enabled: false"
    loading-screen="enabled: false">
  </a-scene>
</body>

Step 3: Add a WebAR Camera

  • Within the <a-scene> entity add an A-Frame <a-camera> entity and give it a webar-camera component.

<body>
  ...

    <a-camera webar-camera></a-camera>

  </a-scene>
</body>

Step 4: Load your 3D Assets

  • Add an <a-assets> entity and load any model files to be used as <a-asset-item> entities. Included with the downloaded WebAR SDK is a model of an astronaut to use as an example.

<a-scene 
    ... 
    ...>

    <a-assets>    
      <a-asset-item
        id="astronaut"
        src="models/astronaut.glb">
      </a-asset-item>
​    </a-assets>

​  </a-scene> 

Step 5: Add a WebAR Stage

  • Next we add a webar-stage entity, this will be the parent to all the 3D models and represents the tracked surface. Any models placed onto the webar-stage will be displayed on the tracked surface. This is where all the action happens.

  • Within the <a-scene> entity add an A-Frame <a-entity> entity and give it a webar-stage component:

  • A 3D model placed under a webAR stage will be displayed on a detected surface.

<body>
   
   ...

    <a-entity webar-stage>
       <!-- Optionally, proceed to the next step to enhance UX with interactive features -->
       <!-- Or, skip the next optional step and proceed to the subsequent one to place your 3D AR models here -->
    </a-entity>

  </a-scene>
</body>

Step 6 : Integrate Enhanced UX with Stage Cursor, Rotation, and Scaling

This step is mandatory to ensure a fully interactive AR experience. Integrate a cursor to allow users to place the AR model precisely by tapping on the screen. This step also introduces gesture-based interactions such as rotation and scaling, making the scene more engaging. This involves using the webar-ux-control component, which should be a child of the webar-stage entity.

  • Add the webar-ux-control entity: Insert an <a-entity> with the webar-ux-control component as a child of <a-entity webar-stage>. Set stageCursorUX: true to enable the stage cursor, and use userGestureRotation: true and userGestureScale: true to allow users to rotate the model by swiping and scale the model by pinching.

<body>
   
   ...

    <a-entity webar-stage>
       <a-entity webar-ux-control="stageCursorUX: true; userGestureRotation: true; userGestureScale: true">
       <!-- Read the next step to place 3D AR models here -->
       </a-entity>
    </a-entity>

  </a-scene>
</body>
  • Understanding the Stage Cursor: With stageCursorUX: true, a visual cursor appears on the identified surface within the AR scene. Users can tap the screen to place the 3D model at the cursor's location, providing an intuitive way to control where the model appears in the physical environment. Conversely, setting stageCursorUX: false will hide the cursor, disabling this placement feature

  • Integrate Gesture-Based Interaction: As with the userGestureRotation and userGestureScale attributes, users can interact with the model by rotating it with a swipe or scaling it with a pinch gesture, offering a more interactive AR experience.

Step 7: Add a 3D Model

  • To the webar-stage we add our preloaded model.

  • Add the 3d model asset <a-entity gltf-model=”#astronaut”> under the parent <a-entity webar-stage> element.

  • Also add the webar-loadmonitor attribute to the entities to display the loading progress screen before starting the surface tracking. See the webar-loadmonitor properties table for more details.

<body>

  ...

    <a-assets>
      <a-asset-item
        id="astronaut"
        src="models/astronaut.glb">
      </a-asset-item>
    </a-assets>

    <a-entity webar-stage>
        <!-- Place 3D AR models here -->
        <a-entity gltf-model="#astronaut" id="astronaut_1" 
                  rotation="0 0 0" position="0 0 0" scale="0.25 0.25 0.25"
                  webar-loadmonitor="elType: glb"></a-entity>
    </a-entity>

  </a-scene>
</body>

Full Source Code

In case we lost you along the way, here is the whole thing:

<!DOCTYPE html>
<html>
<head>
  <title>Blippar Web Surface Tracking</title>
  <script src="https://aframe.io/releases/1.3.0/aframe.min.js"></script>
  <script src="./webar-sdk.min.js"></script>
</head>

  <body>
   <a-scene
      webar-scene="key: xxxxxxxx-1111-2222-3333-yyyyyyyyyyyy"
      vr-mode-ui="enabled: false"
      device-orientation-permission-ui="enabled: false"
      loading-screen="enabled: false">

      <a-camera webar-camera></a-camera>

      <a-assets>
        <a-asset-item
          id="astronaut"
          src="models/astronaut.glb">
        </a-asset-item>
      </a-assets>

      <a-entity webar-stage>
        <!-- Place 3D AR models here -->
        <a-entity gltf-model="#astronaut" id="astronaut_1" 
                  rotation="0 0 0" position="0 0 0" scale="0.25 0.25 0.25"
                  webar-loadmonitor="elType: glb"></a-entity>
      </a-entity>
    </a-scene>
  </body>
</html>

Deployment

Your website must have https enabled, this is to enable the browser to access your camera.

Launching the Experience

Resulting Surface Tracking Experience

The webar-scene is the WebAR version of A-Frame's entity, and functions in much the same way.

Most importantly we add the webar-scene component and set the key: property to the license key you got when you created the project (seefor instructions)

The webar-camera is, like the webar-scene, the WebAR version of A-Frame's entity

To ensure the models are fully loaded before the experience starts so we provide the best user experience, we use A-Frame's ​

Specify the glb model files to be loaded in A-Frame’s <a-assets><a-asset-item> tag. For more details, please refer to A-FRame’s document.

Deploy your files (the HTML file and if you downloaded the SDK the blippar folder) to your web server, (note you can also develop and host locally in Dev Mode, see more info here )

Navigate to your page, the WebAR SDK should work with any modern browser but is extensively tested with Safari (iOS) and Chrome (android). If all has gone well you will see the below. Information about launching the AR experience is available

scene
here
camera
Asset Management System
Asset Management System
Develop Locally.
here.
excellent documentation.
Install section
this link
see here
Blippar Documentation Centre
Folder Structure
Surface Tracking Experience
Surface Tracking Experience