Guest User

Untitled

a guest
Aug 15th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. W0815 21:50:35.497383 1 commandlineflags.cc:1503] Ignoring RegisterValidateFunction() for flag pointer 0x100bc8210: no flag found at that address
  2.  
  3. CoreData: annotation: Failed to load optimized model at path '/var/containers/Bundle/Application/7689CC83-309E-4D44-B5E0-697601B96C61/BoostRadius-iOS.app/GoogleMaps.bundle/GMSCacheStorage.momd/StorageWithTileProto.omo'
  4.  
  5. CoreData: annotation: Failed to load optimized model at path '/var/containers/Bundle/Application/7689CC83-309E-4D44-B5E0-697601B96C61/BoostRadius-iOS.app/GoogleMaps.bundle/GMSCacheStorage.momd/StorageWithTileProto.omo'
  6.  
  7. CoreData: annotation: Failed to load optimized model at path '/var/containers/Bundle/Application/7689CC83-309E-4D44-B5E0-697601B96C61/BoostRadius-iOS.app/GoogleMaps.bundle/GMSCacheStorage.momd/StorageWithTileProto.omo'
  8.  
  9. override func viewDidLoad() {
  10. super.viewDidLoad()
  11. view.backgroundColor = .green
  12.  
  13. let camera = GMSCameraPosition.camera(withLatitude: -33.86, longitude: 151.20, zoom: 6.0)
  14. let mapView = GMSMapView.map(withFrame: CGRect.zero, camera: camera)
  15. view = mapView
  16.  
  17. // Creates a marker in the center of the map.
  18. let marker = GMSMarker()
  19. marker.position = CLLocationCoordinate2D(latitude: -33.86, longitude: 151.20)
  20. marker.title = "Sydney"
  21. marker.snippet = "Australia"
  22. marker.map = mapView
  23. }
Add Comment
Please, Sign In to add comment