eckhchri / pcars-ds-liveview

Provides a html page for project cars dedicated server and display a map of the current race.
14 stars 1 forks source link

"Ghost cars" on Map #15

Closed eckhchri closed 9 years ago

eckhchri commented 9 years ago

Working on Method EraseGhostCarsFromMap();

wenn man die Seite aufmacht, wenn der DS schon läuft, aber noch kein spiel gestartet ist, dann bleiben 2 Leichen/Ghosts übrig, einmal dieser no_participant und noch einer. Man muss dann refreshen, damit es funktioniert.

\ http://d3js.org/ // Update… var p = d3.select("body").selectAll("p") .data([4, 8, 15, 16, 23, 42]) .text(String);

// Enter… p.enter().append("p") .text(String);

// Exit… p.exit().remove();

\ http://alignedleft.com/tutorials/d3/drawing-svgs

eckhchri commented 9 years ago

Solution implemented in CleanupDriverObjects() within index2.html