I have a map in my application that needs to be searchable by building and to also have two sets of icon overlays (to show where certain things are). I have the longitude and latitude of the 100+ points of interest and I’m wondering: what is the best way to store and access them? I need each data point to include a name (String) and two float values. Let me know what you think.
Share
100+ records is enough to justify using a SQLite database. That is what i’d do.