// simple class for object that will be used elsewhere, could potentially be replaced with something like UIMapKit, but for now... import Foundation class LocationObject { var name: String! var address: String! var phone: String! var latitude: Double! var longitude: Double! init(name: String, address: String, phone: String, latitude: Double, longitude: Double) { self.name = name self.address = address self.phone = phone self.latitude = latitude self.longitude = longitude } }