簡體   English   中英

子視圖未使用容器的完整視圖

[英]Subview is not using full view of container

因此,我將UIView用作子視圖的容器,該子視圖將在其中包含Google Maps。 在實現它之后,由於子視圖沒有使用應有的完整容器,因此仍然可以看到一些容器。 我做錯什么了嗎? 我是否缺少一些代碼? 這是當前的樣子... https://imgur.com/a/k0pj0

class SecondViewController: UIViewController, 
CLLocationManagerDelegate, LocateOnTheMap, 
GMSAutocompleteFetcherDelegate, UISearchBarDelegate {



func didAutocomplete(with predictions: [GMSAutocompletePrediction]) {
for prediction in predictions {

    if let prediction = prediction as GMSAutocompletePrediction?{
        self.resultsArray.append(prediction.attributedFullText.string)
    }
}
self.searchResultController.reloadDataWithArray(self.resultsArray)
print(resultsArray)
 }

 func didFailAutocompleteWithError(_ error: Error) {

 }


@IBOutlet weak var MapViewContainer: UIView!

var googleMapsView: GMSMapView!
var searchResultController: SearchResultsController!
var resultsArray = [String]()
var gmsFetcher: GMSAutocompleteFetcher!

 @IBAction func searchWithAddress(_ sender: AnyObject) {
 let searchController = UISearchController(searchResultsController: searchResultController)
searchController.searchBar.delegate = self
self.present(searchController, animated:true, completion: nil)


 }


 let locationDelegate = LocationDelegate()
 var latestLocation: CLLocation? = nil
 var yourLocationBearing: CGFloat { return 
 latestLocation?.bearingToLocationRadian(self.yourLocation) ?? 0 }
 var yourLocation: CLLocation {
get { return UserDefaults.standard.currentLocation }
set { UserDefaults.standard.currentLocation = newValue }
}

//Location Manager Variable

let manager = CLLocationManager()

 //viewDidLoad

override func viewDidLoad() {
super.viewDidLoad()

//Map Options

self.googleMapsView = GMSMapView(frame: self.MapViewContainer.bounds)
self.googleMapsView.clipsToBounds = true
self.MapViewContainer.addSubview(self.googleMapsView)

searchResultController = SearchResultsController()
searchResultController.delegate = self
gmsFetcher = GMSAutocompleteFetcher()
gmsFetcher.delegate = self

googleMapsView.isMyLocationEnabled = true
googleMapsView.mapType = .normal
googleMapsView.settings.compassButton = true
googleMapsView.settings.myLocationButton = true
googleMapsView.settings.zoomGestures = true

}

 func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {

 let location = locations.last

 let camera = GMSCameraPosition.camera(withLatitude: (location?.coordinate.latitude)!, longitude:(location?.coordinate.longitude)!, zoom:14)
googleMapsView.animate(to: camera)

//Finally stop updating location otherwise it will come again and again in this delegate
self.locationManager.stopUpdatingLocation()

}

func locateWithLongitude(_ lon: Double, andLatitude lat: Double, andTitle title: String) {

 DispatchQueue.main.async { () -> Void in

    let position = CLLocationCoordinate2DMake(lat, lon)
    let marker = GMSMarker(position: position)

    let camera = GMSCameraPosition.camera(withLatitude: lat, longitude: lon, zoom: 10)
    self.googleMapsView.camera = camera

    marker.title = "Address : \(title)"
    marker.map = self.googleMapsView


}

}

func searchBar(_ searchBar: UISearchBar, textDidChange searchText: String) {


self.resultsArray.removeAll()
gmsFetcher?.sourceTextHasChanged(searchText)


}

override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()

}
}

正如我在評論中所述,您需要重寫ViewController的viewDidLayoutSubviews

func viewDidLayoutSubviews() { 
  super.viewDidLayoutSubviews() 
  self.googleMapsView.frame = self.MapViewContainer.bounds 
}   

您還需要在viewDidLoad刪除這一行self.googleMapsView.clipsToBounds = true

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM