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. Enabled by default. Can be used to opt out of virtualised LMT.

enableVirtualisedLight boolean true

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

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>