Support for Adobe Analytics tracking

The Flyout Viewer supports Adobe Analytics tracking out of the box.

Out-of-the-box tracking

The Inline Zoom Viewer supports Adobe Analytics tracking out-of-the-box. To enable tracking, pass the proper company preset name as config2 parameter.

The viewer also sends a single tracking HTTP request to the configured Image Server with the viewer type and version information.

Custom tracking

To integrate with third-party analytics systems, it is necessary to listen to the trackEvent viewer callback and process the eventInfo argument of the callback function as necessary. The following code is an example of such handler function:

var inlineZoomViewer = new s7viewers.FlyoutViewer({
 "containerId":"s7viewer",
"params":{
 "asset":"Scene7SharedAssets/ImageSet-Views-Sample",
"config" : "Scene7SharedAssets/Universal_HTML5_Zoom_Inline",
"contenturl" : "http://s7d1.scene7.com/is/content/",
 "serverurl":"http://s7d1.scene7.com/is/image/"
},
"handlers":{
 "trackEvent":function(objID, compClass, instName, timeStamp, eventInfo) {
  //identify event type
  var eventType = eventInfo.split(",")[0];
  switch (eventType) {
   case "LOAD":
    //custom event processing code
    break;
   //additional cases for other events
}
}
}
});

The viewer tracks the following SDK user events:

SDK user event

Sent when...

LOAD

the viewer is loaded first.

SWAP

an asset is swapped in the viewer using setAsset() API.

ZOOM

the flyout is activated or the zoom level is changed.

PAN

an image is panned.

SWATCH

an image is changed by clicking or tapping on a swatch.

On this page