Google maps GMSMarker меняет фокусировку камеры iOS - PullRequest
0 голосов
/ 29 мая 2018

У меня проблема с тем, что GMSMarker меняет фокусировку камеры на любое всплывающее оповещение или всякий раз, когда я нажимаю на маркер и приложение переходит в приложение Google Maps.Следующее - моя реализация.Я добавляю контейнер карт Google в мой заголовок viewcontroller в методе layoutsubviews.Понятия не имею, что происходит.Пожалуйста, помогите.

override func viewDidLayoutSubviews()
    {
        super.viewDidLayoutSubviews()

        if mapView == nil
        {
            let camera = GMSCameraPosition.camera(withLatitude: 45.582045, longitude:74.32937, zoom: 14.0)
            mapView = GMSMapView.map(withFrame: CGRect(x: 0, y: 0, width: self.mapContainerView.bounds.size.width, height: self.mapContainerView.bounds.size.height), camera: camera)
            mapView.delegate = self

            do {
                // Set the map style by passing the URL of the local file.
                if let styleURL = Bundle.main.url(forResource: "style", withExtension: "json") {
                    mapView.mapStyle = try GMSMapStyle(contentsOfFileURL: styleURL)
                } else {
                    NSLog("Unable to find style.json")
                }
            } catch {
                NSLog("One or more of the map styles failed to load. \(error)")
            }

            self.mapContainerView.addSubview(mapView)
            mapView.settings.setAllGesturesEnabled(false)
            let marker = AppointmentMapDataManager(mapView: mapView).setAppointmentMarker()
//            let location = GMSCameraPosition.camera(withLatitude: marker.position.latitude,
//                                                  longitude: marker.position.longitude,
//                                                  zoom: 14)
//            mapView.camera = location
            var bounds = GMSCoordinateBounds()
            bounds = bounds.includingCoordinate((marker as AnyObject).position)
            let update = GMSCameraUpdate.fit(bounds, with: UIEdgeInsets(top: self.mapContainerView.frame.height/2 - 33, left: self.mapContainerView.frame.width/2 - 81, bottom: 0, right: 0))
            mapView.moveCamera(update)
        }
    }

enter image description here

enter image description here

Ответы [ 2 ]

0 голосов
/ 29 мая 2018

Вместо перемещения камеры в viewDidLayoutSubView, что является неправильным подходом, используйте метод didTap из GMSMapViewDelegate или, если вы хотите сделать это автоматически, используйте команду execute after delay

//method for center camera based in your own code
func centerInMarker(marker: GMSMarker) {
    var bounds = GMSCoordinateBounds()
    bounds = bounds.includingCoordinate((marker as AnyObject).position)
    let update = GMSCameraUpdate.fit(bounds, with: UIEdgeInsets(top: (self.mapView?.frame.height)!/2 - 33, left: (self.mapView?.frame.width)!/2 - 81, bottom: 0, right: 0))
    mapView?.moveCamera(update)
}

. Выможно использовать его в методе делегата

func mapView(_ mapView: GMSMapView, didTap marker: GMSMarker) -> Bool {
    self.centerInMarker(marker: marker)
    return true
}

или просто при добавлении маркера с задержкой

DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
        self.centerInMarker(marker: marker)
}
0 голосов
/ 29 мая 2018

Вы должны добавить в viewDidLoad метод и обновить frame в viewDidLayoutSubviews.

...