Location Details
class LocationDetailsController: UIViewController, GMSMapViewDelegate {var map: GMSMapView? = nil
var mapControl: MPMapControl? = nilvar detailsView = UIStackView()
var mainView = UIStackView()
var nameLabel = UILabel()
var descrLabel = UILabel()self.map = GMSMapView(frame: CGRect.zero)
self.map?.delegate = self
self.map?.camera = .camera(withLatitude: 57.057964, longitude: 9.9504112, zoom: 20)
self.mapControl = MPMapControl(map: self.map!)nameLabel = UILabel()
descrLabel = UILabel()
nameLabel.backgroundColor = UIColor.white
descrLabel.backgroundColor = UIColor.whiteLast updated
Was this helpful?