根据纬度和经度创建如下标记帮助我将标记移动到另一个带动画的位置。
GMSMarker *marker1 = [[GMSMarker alloc] init];
marker1.position = CLLocationCoordinate2DMake(12.9716, 77.5946);
marker1.title = @"Bangalore";
marker1.groundAnchor = CGPointMake(0.2, 0.9);
marker1.appearAnimation = kGMSMarkerAnimationPop;
marker1.icon = [UIImage imageNamed:@"Flag Filled -50.png"];
marker1.snippet = @"India";
marker1.map = _mapView;
答案 0 :(得分:0)
你可以使用GMSMarker的setRotation方法。希望它可以工作。
答案 1 :(得分:0)
使用Xcode 9 Swift 4:顺利移动标记。
@objc func moveMarker(){
self.lat += 0.0017
CATransaction.begin()
CATransaction.setValue(2.0, forKey: kCATransactionAnimationDuration)
CATransaction.setCompletionBlock {
self.marker.groundAnchor = CGPoint(x: 0.5, y: 0.5)
}
self.mapView.animate(to: GMSCameraPosition.camera(withLatitude: self.lat, longitude: self.lon, zoom: 15))
self.marker.position = CLLocationCoordinate2D(latitude: self.lat, longitude: self.lon)
CATransaction.commit()
self.marker.map = self.mapView
}
你的Marker将在地图上像Uber的Car一样在地图上移动。
没有必要提及.groundAnchor
属性,请阅读Google文档。
此外,在传递self.lat
中的值之前,请更新self.lon
和CATransaction
。 (lat
和lon
是具有默认值的全局变量)
最后我使用Timer.scheduledTimer
来调用
override func viewDidAppear(_ animated: Bool) {
var timer = Timer()
timer = Timer.scheduledTimer(timeInterval: 1.0, target: self, selector: #selector(moveMarker), userInfo: nil, repeats: true)
}
我打赌它会帮助一些人。 =)
结果: