In this case, I have four lists that I get from the web. These lists always contain the same number of items because they are related.
It's worth mentioning that the number of items in the four lists changes periodically. It can be anywhere from 0 to 50 items depending on the number of active users.
I need to create a list without specifying the number of items in the blocks because they are variable.
I could put "Item 1" and "Item 2" in the list, but I would like to avoid that since, as I said, the number of items changes over time.
The logic would be:
If an item or items exist in the list, then I retrieve them in the assigned order and assign them an item number for future actions.
You init the 4 global list variables to empty lists, just to get the names, I hope.
If you just want to show them side by side, use 4 Labels in a Horizontal Arrangement, containg the results of 4 Join With Separator \n against each of the 4 lists.
If you want it refreshed periodically, put a web request in a Clock Timer and have that extract the 4 lists and refresh the Labels.
Yes, that's correct.
The coordinates are automatically updated every 5 seconds when in use by the timer.
I created 3 markers: one for the mobile user and two more for external users. Now I want to increase the number of users, which is why I need more markers.
Since I already have the coordinates for all of them on the website, I'd like to retrieve them and convert them into a list of markers.
I've seen that you can create a JSON object from a CSV file with just one marker.
That's why I'd like to know how I should approach this for the content and create my list.