Widgets.nfl.player.TotalDistanceGame

Widget nfl.player.totalDistanceGame brings total distance in yards covered by a player from snap to the end of play whistle shown in seasonal aggregations and in a single game, depending on the selected active time frame view. Excludes all special teams plays. Seasonal stats update after a game is completed, game based stats update during the game (as the game progresses, calculations are done post play).

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


new TotalDistanceGame(props)

Parameters
Name Type Description
props object
Properties
Name Type Argument Default Description
matchId string

Match Id.

playerId string

Player Id.

activeTimeFrame string <optional>
game

Selects active time frame view. Valid values are game and season.

useTeamColors boolean <optional>
null

Valid values are:

  • null (the default) = settings from the client configuration are used. If the client is configured to use team colors, then the theme can be overriden with the teamColorsTheme parameter.
  • true = team colors will be used, as specified with the teamColorsTheme parameter. If the teamColorsTheme is not specified and the client configuration does not specify a team colors theme, or if the teamColorsTheme contains an invalid theme name, then team colors will not be used.
  • false = team colors will not be used.
teamColorsTheme string <optional>
null

When set (and not disabled by useTeamColors), specifies the name of the formula to calculate team colors (e.g. mono-team-colors-light).

onTrack function <optional>

Function/event handler, see Widgets.onTrack

Examples

HTML/Declarative

<div id="sr-widget" data-sr-widget="nfl.player.totaldistancegame" data-sr-match-id="sd:match:3be53f93-f621-4a62-b0ce-9c44a9a55842" data-sr-player-id="sd:player:2bb70d56-a79a-4fa1-ae37-99858a3ffd55"></div>
<script type="application/javascript" src="https://widgets.media.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.media.sportradar.com/sportradar/widgetloader","USW", {
        language: 'en'
    });
    USW('addWidget', '#sr-widget', 'nfl.player.totaldistancegame', {matchId: 'sd:match:3be53f93-f621-4a62-b0ce-9c44a9a55842', playerId: 'sd:player:2bb70d56-a79a-4fa1-ae37-99858a3ffd55'});
</script>
<div id="sr-widget"></div>