I have an array and I need a way to relay this information back to the user. I am creating a GIS application and the results are from a user click on the map and identifying features...

This is what I get back from the user click....

[{"objectid":3255,"idcount":"private","userid":"gat e","Surveyed":null,"class":null},{"objectid":3256, "idcount":"public","userid":"parking","Surveyed":" kjkjhkjhkjhkhjkhj","class":"yujjhjhkjh"},{"objecti d":3257,"idcount":"private","userid":"fishing spot","Surveyed":null,"class":null},{"objectid":36 55,"idcount":"public","userid":"parking","Surveyed ":"kjkjhkjhkjhkhjkhj","class":"yujjhjhkjh"}]

What I am trying to create is a popup/dialog window of some sort that:
  1. Displays only one record at a time.
  2. Have an arrow of some sort at the top that allows the user to flip through the multiple records.


I am very new to this and looking for suggestions and/or examples. Think I have to convert the array to a ListView or ListModel? Looking for a javascript solution.

Any thoughts?