I want to initialize and customize a GMSPlace
object, with a custom variable. I'm trying to do the below:
import Foundation
import GooglePlaces
func parseObject() {
let parsedGMS = GMSPlace()
parsedGMS.coordinate.latitude = 4.0
parsedGMS.formattedAddress = "test test"
}
but the issue is that these are get only properties so how can I do that ??