Basic with Google Maps
Add to Podfile pod 'GoogleMaps'
Add a custom marker
import GoogleMapsfinal class StopMarker: GMSMarker {
let stop: Stop init(stop: Stop) {
self.stop = stop
super.init()
self.title = stop.name
self.position = stop.toCoordinate()
let imageView = UIImageView(frame: CGRect(x: 0, y: 0, width: 30, height: 30))
imageView.layer.cornerRadius = 15…


