I try to build app with maps, and I want to have additional info in markers. Documentation offers only 2 properties title
and snippet
. It looks like this
let position = CLLocationCoordinate2DMake(51.5, -0.127)
let london = GMSMarker(position: position)
london.title = "London"
london.snippet = "Population: 8,174,100"
london.map = mapView
For example, I want to add field rating
to each marker to display average rating for place.
How can I do that ?