Option #1 – auto bootstrapping
Insert following code where you want to place the tracker:
<script>(function (d, sid) {if(!document.getElementById(sid)){var s = d.createElement('script');s.id=sid;s.src='https://live.statscore.com/livescorepro/generator';s.async=1;d.body.appendChild(s);}})(document, 'STATSCORE_LMP_GENERATOR_SCRIPT');</script>
<div id="tracker-1" class="STATSCORE__Tracker" data-event="1653325" data-lang="en" data-config="169" data-zone="" data-use-mapped-id="0"></div>
You can configure your tracker by changing HTML element attributes:
- id - it's the html element identifier. In case where few trackers will be visible on the same page, each id should have different value f.e. "tracker-2", "tracker-3" etc.
- data-event - this value should include STATSCORE event ID or CUSTOMER event ID.
Please note: To force the script to use CUSTOMER event ID attribute "data-use-mapped-id" should have value = 1. - data-lang - sets language for tracker
- data-config - configuration id, different for each customer
- data-zone - sets time-zone for tracker. If empty local time-zome will be detected automatically.
- data-use-mapped-id - switch tracker to use STATSCORE or CUSTOMER event id in data-event parameter to display visualisation.
Possible values:
"0" - in this case data-config parameter should store STATSCORE event ID to display visualisation.
"1" - in this case data-config parameter should store CUSTOMER event ID to display visualisation and CUSTOMER event ID should be mapped with STATSCORE event ID in STATSCORE system.
Event given in the example is a test one and it uses default configuration (colors, fonts and other visual components) which cannot be changed by passing another configuration id. Final (production) configuration could be customized according to customer expectations.
Option#2 – manual initialization and tracker management
At the bottom of the page, just before the end of the body tag put the script with tracker's library with auto_init=„false” in query string.
<script rel="script" src="https://live.statscore.com/livescorepro/generator?auto_init=false"></script>
In your code create new STATSCORE.LSP.Generator object which you will use to manage the trackers on the website:
var trackerGenerator = new STATSCORE.LSP.Generator();
Embedding new tracker
In order to embed new tracker, we can use „create” method in our STATSCORE.LSP.Generator() object:
trackerGenerator.create(string domRoot, string identifyingName, int eventId, int configId, (optional) {} additionalConfig);
Parameters description
domRoot – a path to DOM element e.g. '.class1 #id div' or DOM element which should contain the tracker
identifyingName – new tracker's name (it will end up as id of HTML element of tracker); must be unique
eventId – id of a sport event
configId – id of tracker configuration
additionalConfig – optional parameter; extra configuration (e.g. language, time zone)
Example 1:
trackerGenerator.create('#trak', 'tracker1', 1653325, 169, {lang:'pl', timezone:'Local'})
Example 2:
trackerGenerator.create('#trak .some-class', 'tracker1653325', 1653325, 169)
Example 3:
trackerGenerator.create(document.querySelector('#trak'), 'tracker3', 1653325, 169, {lang:'en'})
Example 4:
trackerGenerator.create(document.getElementById('trak'), 'tracker3', 1653325, 169, {lang:'en'})
Event given in the example is a test one and used template cannot be changed by passing another configuration id. In the end template could be customized to live up to our customers expectations.
Getting a list of created trackers
To get the list of created trackers you can use the function below:
trackerGenerator.getTrackerList();
Tracker management
We can get created tracker object using „get” method:
var tracker = trackerGenerator.get(string identifyingName);
identifyingName – name of the tracker we want to get. Its same as identifyingName passed in the STATSCORE.LSP.Generator.create() method.
Available methods in tracker object:
tracker.remove(); - delete tracker from a tracker list and HTML
tracker.refresh(); - reload tracker
tracker.setLang(string language) – set tracker language by country code e.g. 'pl'.
tracker.setConfig(int configId) – set tracker configuration. Config id for you to use is provided by us.
tracker.setTimeZone(string timezone) – set time zone e.g. 'Africa/Accra'.
setEvent(int eventId) – set sport event by id e.g. 17028
After changing parameters the tracker has to be reloaded using the „refresh” method e.g.:
tracker.setLang('pl').setEvent(1789).refresh();
Using your event id
To use your event id, you should, contact with us to map your event identificators with ours.
In order to tracker to work with your ids, you need to provide additional parameter in create function.
Example 1
trackerGenerator.create('#trak', 'tracker1', 1653325, 169, {
useMappedId:'1',
})
To switch between yours ids or ours ids on the fly, you can use following methods on tracker object:
useRegularEventId()
- useMappedEventId()
After using those methods remember to change event id and call refresh method.
Example 2
var tracker = trackerGenerator.get({string} identifyingName);
tracker.useRegularEventId().setEvent({number} new event id).refresh();
Set custom template configuration
If for any reason you need a little more customization (change default tab, hide header etc.) you can change default configuration of your template by adding configuration key to additionalConfig parameter.
Example 1:
trackerGenerator.create('#trak', 'tracker1', 1653325, 169, {
lang:'pl',
timezone:'Local',
configuration:{
showHeader: true
}
});
Available configuration options
Option | Description |
---|---|
showHeader Type: "default" {string} Possible values:
| This option decide about tracker header visibility |
showTimeline Type: "default" {string} Possible values:
| This option decide about tracker timeline visibility |
showAds Type: "default" {string} Possible values:
| This option decide about tracker advertisment visibility |
mainMenu Type: "default" {string} Possible values: | Here you can specify which tabs should be shown in main box |
additionalMenu Type: "default" {string} Possible values: | Here you can specify which tabs should be shown in additional box (this is right box in horizontal mode or lower box in vertical mode) This configuration is available only when your template has 2 boxes. |
basicRelationMainMenu Type: "default" {string} Possible values: | This option is same as mainMenu but its considered only in basic relation mode. By default basic relation uses BasicEvent instead of Event tab. |
basicRelationAdditionalMenu Type: "default" {string} Possible values: | This option is same as additionalMenu but its considered only in basic relation mode. |
mainBoxInitializationTab Type: "default" {string} Possible values: | This configuration decide which tab should be loaded as first on tracker initialization |
additionalBoxInitializationTab Type: "default" {string} Possible values: | This configuration decide which tab should be loaded as first in additional box on tracker initialization |
mainBoxBasicRelationInitializationTab Type: "default" {string} Possible values: | This option is same as mainBoxInitializationTab but its considered only in basic relation mode. |
additionalBoxBasicRelationInitializationTab Type: "default" {string} Possible values: | This option is same as additionalBoxInitializationTab but its considered only in basic relation mode. |
Example 2 - change visability
trackerGenerator.create('#trak', 'tracker1', 1653325, 169, {
configuration:{
showHeader: false,
showAds: false
}
})
BEFORE:
AFTER:
Example 2 - change tabs
trackerGenerator.create('#trak', 'tracker1', 1653325, 169, {
configuration:{
mainMenu: 'Event,Comparison,Incidents,Standings',
mainBoxInitializationTab: 'Comparison'
}
})
AFTER:
Create collapsed tracker
When you dont want show full tracker at the start, you can collapse it by default.
Example 1
trackerGenerator.create('#trak', 'tracker1', 1653325, 169, {
configuration:{
mainMenu: 'Event,Comparison,Incidents,Standings,Expander',
mainBoxInitializationTab: 'Expander'
}
})
IMPORTANT:
- Do not forget to add Expander tab to mainMenu. When initialization tab is missing, first available tab on the list will be initialized.
Event handling
You can add event listener to handle some of the tracker events.
Example 1
window.addEventListener('statscore.livematchpro.{your tracker identificator}.{event type}', function(){
console.log('callback');
});
Available event types:
Event name | Description |
---|---|
ready | This event triggers when tracker is loaded. |
resize | This event triggers when tracker iframe was resized. Keep in mind that this event is fired not only on resize, we use it internally to handle some stuff. |
error | This event triggers on any error occurrence which lead to tracker failing to load. It can be triggered by both external and internal reasons (for example by by providing invalid event id or some system error on our side). |
Example 2
window.addEventListener('statscore.livematchpro.tracker1.ready', function(){
console.log('This is tracker1 ready callback');
});
window.addEventListener('statscore.livematchpro.tracker1.resize', function(){
console.log('This is tracker1 resize callback');
});
window.addEventListener('statscore.livematchpro.tracker1.error', function(){
console.log('This is tracker1 error callback');
});