v2rmp 0.4.5

rmpca — Route Optimization TUI & Agent Engine
Documentation
<!DOCTYPE html>
<html>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<head>
    <title>v2rmp Route Optimizer</title>
    <style>
        html {
            /* Remove touch delay: */
            touch-action: manipulation;
        }

        body {
            /* Light mode background color for what is not covered by the egui canvas,
            or where the egui canvas is translucent. */
            background: #909090;
            margin: 0;
            padding: 0;
            width: 100vw;
            height: 100vh;
            overflow: hidden;
        }

        @media (prefers-color-scheme: dark) {
            body {
                background: #404040;
            }
        }

        /* Allow canvas to fill entire web page: */
        canvas {
            display: block;
            width: 100%;
            height: 100%;
            /* Make sure the canvas is well separated from other elements (if any) */
            outline: none;
        }
    </style>
</head>
<body>
    <canvas id="the_canvas_id"></canvas>
</body>
</html>