gniziemazity / self-driving-car

MIT License
665 stars 332 forks source link

Set character encoding to ensure correct symbols will appear on the canvas #7

Open jonaspetersorensen opened 1 year ago

jonaspetersorensen commented 1 year ago

For some browser/computer combos the char encoding will fail when trying to draw the arrow symbols on the network canvas. If I am explicit about setting the character encoding in the html header then it works everywhere.

Example: In index.html, add a charset meta tag

<html>
   <head>
      <meta charset="utf-8">
...
gniziemazity commented 1 year ago

Thanks for pointing this out!