Basic Information

Detailed Information

Report Data

We want to make integration as simple as possible and sometimes all you need is your devices on a map while maintaining your own domain name.

Using an iframe with a link to our app can provide that use-case out of the box.

<!DOCTYPE html>
<html>
    <head>
        <style>
            html {
                width: 100%;
                height: 100%;
            }

            body {
                padding: 0;
                margin: 0;
            }

            iframe {
                position: absolute;
                width: 100%;
                height: 100%;
                border: none;
            }
        </style>
    </head>
    <body>
        <iframe src='https://app.usfleettracking.com/?cid=your-title'></iframe>
    </body>
</html>