Track Map Display (Extended)

Apps Track Map Display (Extended) 4.7.1

Login or Register an account to download this content
I searched this thread for the word "auto" and nothing came up.

Maybe this isn't popular enough but is there a way to autorotate the map in the driving direction?

Edit: nvm. Works in minimal just not full. That's good enough for me.

Edit2: Is there a zoom functionality? This works perfectly on the track but free roam for say Nihon, you can't tell where they are ahead of you (ie which lane)

Great work on this!
 
Last edited:
Hi,

There is a problem online when new driver connect, it is not shown.

Have tried different stuff like:

Code:
ac.onClientConnected(function(idx, sessionId)
  ac.debug("new client connected!", idx)
  refresh(idx)
  --[[
  if isSessionStarted then
    MapProgress:lazyUpdate()
  end
  --]]
end)

but whatever I try cause a lag when refreshing the map
Last csp / cm version

EDIT

Seems good with that:

Code:
ac.onClientConnected(function(idx, sessionId)
  ac.debug("new client connected!", idx)
  CARS[idx].hide = false
end)

ac.onClientDisconnected(function(idx, sessionId)
  ac.debug("new client disconnected!", idx)
  CARS[idx].hide = true
end)
 
Last edited:
I actually fixed it on my own, but hope the dev will fix it even better. Would need a simple way to show and hide car circle on ac.onClientConnected() callback to not have to reload all of them.
Which file did you put your code in? I can't seem to find it in any of the lua files in the mapdisplay folder.
 

Latest News

What is the reason for your passion for sim racing?

  • Watching real motorsport

    Votes: 184 66.9%
  • Physics and mechanics

    Votes: 118 42.9%
  • Competition and adrenaline

    Votes: 127 46.2%
  • Practice for real racing

    Votes: 54 19.6%
  • Community and simracers

    Votes: 76 27.6%
Back
Top