Currently, I am working on developing a basic web application prototype that will showcase the real-time tracking of up to five individual objects within a predefined room. While I have explored the possibility of using three.js for this project, I am wondering if there are simpler alternatives or examples that align with my specific requirements.
Suppose, for instance, that my room measures 5m in width, 10m in length, and 3m in height. In this case, I am interested in utilizing a JavaScript library to visually represent this space and dynamically update the frontend using ajax requests or socket.io for streaming data. The objective is to visualize the movement of a maximum of five active RFID devices, with data retrieved from the database adhering to the following structure:
{
tag_id: 'test_tag',
time: '2017-06-13 14:00:00',
x_coord: 3,
y_coord: 5,
z_coord: 10
}