Betting Entertainment Tools

Virtualised Live Match Tracker

match.lmtPlus

For the widget to render you need to provide matchId, other properties are optional.

Parameters
Name Type Attributes Default Description
props object <required>
matchId number | string <required>

Match ID.

enableVirtualised boolean true

Enables virtualised LMT for NBA. Enabled by default. Can be used to opt out of virtualised LMT for NBA.

enableVirtualisedLight boolean true

Enables light virtualised LMT for NBA. Enabled by default. Can be used to opt out of light virtualised LMT for NBA.

enableVlmtCwc boolean true

Enables virtualised LMT for Fifa Club World Cup. Enabled by default. Can be used to opt out of Fifa Club World Cup Virtualised LMT.

enableVlmtUefa boolean true

Enables virtualised LMT for UEFA Champions League. Enabled by default. Can be used to opt out of UEFA Champions League Virtualised LMT.

enableVlmtUefaLight boolean true

Enables Virtualised LMT Light for UEFA Champions League. Enabled by default. Can be used to opt out of UEFA Champions League Virtualised LMT Light.

enableVlmtDfl boolean true

Enables virtualised LMT for Bundesliga. Enabled by default. Can be used to opt out of Bundesliga Virtualised LMT.

enableVlmtDflLight boolean true

Enables Virtualised LMT Light for Bundesliga. Enabled by default. Can be used to opt out of Bundesliga Virtualised LMT Light.

vlmtCameraType string

Enables switching between camera views in VLMT. Valid values are 'topdown', 'broadcast', 'sideline', 'action'.

vlmtEnableAccessories boolean

Enables the option to show or hide accessories added to the Virtualised LMT for special occasions (e.g., Christmas, Valentine's Day). With this prop, all accessories can be enabled or disabled.

Examples

HTML/Declarative

<div id="sr-widget" data-sr-widget="match.lmtPlus" data-sr-match-id="match_id_here"></div>
<script type="application/javascript" src="https://widgets.sir.sportradar.com/sportradar/widgetloader" async></script>

JS/Programmatic

<script>
    (function(a,b,c,d,e,f,g,h,i){a[e]||(i=a[e]=function(){(a[e].q=a[e].q||[]).push(arguments)},i.l=1*new Date,i.o=f,
    g=b.createElement(c),h=b.getElementsByTagName(c)[0],g.async=1,g.src=d,g.setAttribute("n",e),h.parentNode.insertBefore(g,h)
    )})(window,document,"script","https://widgets.sir.sportradar.com/sportradar/widgetloader","SIR", {
        language: 'en'
    });
    SIR('addWidget', '#sr-widget', 'match.lmtPlus', {matchId: match_id_here});
</script>
<div id="sr-widget"></div>

JS/Programmatic - pitch only

<script>
    (function(a,b,c,d,e,f,g,h,i){a[e]||(i=a[e]=function(){(a[e].q=a[e].q||[]).push(arguments)},i.l=1*new Date,i.o=f,
    g=b.createElement(c),h=b.getElementsByTagName(c)[0],g.async=1,g.src=d,g.setAttribute("n",e),h.parentNode.insertBefore(g,h)
    )})(window,document,"script","https://widgets.sir.sportradar.com/sportradar/widgetloader","SIR", {
        language: 'en'
    });
    SIR('addWidget', '#sr-widget', 'match.lmtPlus', {
        matchId: match_id_here,
        vlmtEnableAccessories: "true",
        vlmtCameraType: "action"
    });
</script>
<div id="sr-widget"></div>