如何在 iOS 中移动 Google 地图的同时移动标记?

How do I move marker along with moving of Google Map in iOS?

我在特定地点显示标记,同时在 Google 地图上的地址标签中显示当前地址。

现在,我想通过移动Google地图来改变位置,但问题是当我移动地图时,我应该同时移动标记和地图,我应该显示地址标签中该位置的地址。

我该怎么做?

我试过这个:

let destinationMarker = GMSMarker(position: self.destinationLocation.coordinate)

let image = UIImage(named:"sourcemarker")
destinationMarker.icon = image
destinationMarker.draggable = true
destinationMarker.map = self.viewMap
//viewMap.selectedMarker = destinationMarker
destinationMarker.title = "hi"
destinationMarker.userData = "changedestination"

func mapView(mapView: GMSMapView, didEndDraggingMarker marker: GMSMarker)
{
    if marker.userData as! String == "changedestination"
    {
        self.destinationLocation = CLLocation(latitude: marker.position.latitude, longitude: marker.position.longitude)
        self.destinationCoordinate = self.destinationLocation.coordinate
        //getAddressFromLatLong(destinationCoordinate)
    }
}

基于 Release Notes 在 Maps SDK 中为 IOS 制作的内容,更改标记位置将导致标记动画到新位置。

要解决此问题,您可以使用 Release Version 1.5 中所述的 GMSMarker 新功能,例如:

  • 可以使用 draggable 属性 使标记可拖动,并且新的拖动委托方法已添加到 GMSMapViewDelegate。 (第 4975 期)
  • 添加了 GMSMarkerLayer,它是 GMSMarker 的自定义 CALayer 子类,支持标记位置和旋转的动画。 (第 4951 期,第 5743 期)

除此之外,这个 post 在 GitHub - GoogleMapsAnimationGlitch 这就是 post - How to smoothly move GMSMarker along coordinates in Objective c 也可能有帮助。

这里有一个技巧可以帮助您。不要在这里使用 GMSMarker,而是将指向中心的图像放在 Google MapView 上。

您可以使用这个轻松找到地图中心的坐标:

double latitude = mapView.camera.target.latitude;
double longitude = mapView.camera.target.longitude;

或者这个

GMSCoordinateBounds *bounds = nil;
bounds = [[GMSCoordinateBounds alloc] initWithRegion: visibleRegion];

CLLocationCoordinate2D centre = CLLocationCoordinate2DMake(
                                                           (bounds.southWest.latitude + bounds.northEast.latitude) / 2,
                                                           (bounds.southWest.longitude + bounds.northEast.longitude) / 2);

现在您可以通过 google 使用地理编码 API 获取位置地址。

参考资料如下: https://developers.google.com/maps/documentation/ios-sdk/reference/interface_g_m_s_geocoder

您可以在调用此委托方法时刷新地址:

- (void) mapView:(GMSMapView *)mapView idleAtCameraPosition:(GMSCameraPosition *)position 

希望对您有所帮助。

// UpdteLocationCoordinate
    func updateLocationoordinates(coordinates:CLLocationCoordinate2D) {
        if destinationMarker == nil
        {
            destinationMarker = GMSMarker()
            destinationMarker.position = coordinates
            let image = UIImage(named:"destinationmarker")
            destinationMarker.icon = image
            destinationMarker.map = viewMap
            destinationMarker.appearAnimation = kGMSMarkerAnimationPop
        }
        else
        {
            CATransaction.begin()
            CATransaction.setAnimationDuration(1.0)
            destinationMarker.position =  coordinates
            CATransaction.commit()
        }
    }

    // Camera change Position this methods will call every time
    func mapView(mapView: GMSMapView, didChangeCameraPosition position: GMSCameraPosition) {
        let destinationLocation = CLLocation()
        if self.mapGesture == true
        {
            destinationLocation = CLLocation(latitude: position.target.latitude,  longitude: position.target.longitude)
            destinationCoordinate = destinationLocation.coordinate
            updateLocationoordinates(destinationCoordinate)
        }
    }

Swift4 的更新:

首先你需要符合GMSMapViewDelegate:

extension MapsVC: GMSMapViewDelegate{

然后在viewDidLoad()

中将你的VC设置为viewMap的委托
viewMap.delegate = self

之后你只需要使用以下方法从相机位置获取更新并将其设置为标记的新位置:

func mapView(_ mapView: GMSMapView, didChange position: GMSCameraPosition) {
    destinationMarker.position = position.target
    print(destinationMarker.position)
}
    objc_sync_enter(self)
    CATransaction.begin()
    CATransaction.setCompletionBlock { [weak self] in
        guard let `self` = self else { return }
        DispatchQueue.main.delay(0.5) {
            self.mapViewService.setCenter(location.coordinate, animate: true, zoom: nil)
        }
        objc_sync_exit(self)
    }
    CATransaction.setAnimationDuration(vm.continunousLocationUpdateTimeInterval)
    self.mapViewService.moveMarker(position: location.coordinate, marker: userMarker)
    CATransaction.commit()

上面的代码对我有用,moveMarker方法只是把代码打包了marker.position = newCoordinate