gpt4 book ai didi

ios - 用箭头替换 GMSMapView 中的蓝点 - Swift

转载 作者:搜寻专家 更新时间:2023-11-01 06:23:30 26 4
gpt4 key购买 nike

我将 Google SDK 用于应用程序 iOS8 (Swift)。我想用根据智能手机方向旋转的箭头替换 GMSMapView 中的蓝点(我的位置)。我该怎么做?

编辑:

我设法看到了我的箭头,但我遇到了三个问题:

enter image description here

1 : 箭头被切断了,我没有发现扩大区域

2 : 箭头的位置不在我的位置我通过删除“0,5”来解决这个问题:

CGContextTranslateCTM(context, size.width, size.height)

3 : 箭头的方向与原来对称我通过在“度”前加“-”来解决这个问题:

CGContextRotateCTM(context, CGFloat(DegreesToRadians(Double(-degrees))))

如何解决这些问题?

最佳答案

如果您使用的是 Google Maps iOS SDK,似乎有 no way to replace默认用户位置图标。然而,默认图标已经有一个箭头指示用户前进的方向(只需调用 mapView.myLocationEnabled = true)。

解决方法是在用户当前位置放置一个标记,并根据航向更改标记图像。

示例代码(the full source code):

    func RadiansToDegrees(radians: Double) -> Double {
return radians * 180.0/M_PI
}

func DegreesToRadians(degrees: Double) -> Double {
return degrees * M_PI / 180.0
}

var GeoAngle = 0.0
var locationManager = CLLocationManager()
var marker = GMSMarker()

override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.

var camera = GMSCameraPosition.cameraWithLatitude(-33.86,
longitude: 151.20, zoom: 6)
var mapView = GMSMapView.mapWithFrame(CGRectZero, camera: camera)
self.view = mapView

marker.map = mapView

locationManager.delegate = self
locationManager.requestAlwaysAuthorization()
locationManager.startUpdatingLocation()
locationManager.startUpdatingHeading()
}

func locationManager(manager: CLLocationManager!, didUpdateToLocation newLocation: CLLocation!, fromLocation oldLocation: CLLocation!) {
var camera = GMSCameraPosition.cameraWithLatitude(newLocation.coordinate.latitude,
longitude: newLocation.coordinate.longitude, zoom: 15)
(self.view as GMSMapView).animateToCameraPosition(camera)

GeoAngle = self.setLatLonForDistanceAndAngle(newLocation)
marker.position = newLocation.coordinate
}

func locationManager(manager: CLLocationManager!, didUpdateHeading newHeading: CLHeading!) {
var direction = -newHeading.trueHeading as Double
marker.icon = self.imageRotatedByDegrees(CGFloat(direction), image: UIImage(named: "arrow.png")!)
}


func imageRotatedByDegrees(degrees: CGFloat, image: UIImage) -> UIImage{
var size = image.size

UIGraphicsBeginImageContext(size)
var context = UIGraphicsGetCurrentContext()

CGContextTranslateCTM(context, 0.5*size.width, 0.5*size.height)
CGContextRotateCTM(context, CGFloat(DegreesToRadians(Double(degrees))))

image.drawInRect(CGRect(origin: CGPoint(x: -size.width*0.5, y: -size.height*0.5), size: size))
var newImage = UIGraphicsGetImageFromCurrentImageContext()
UIGraphicsEndImageContext()

return newImage
}

func setLatLonForDistanceAndAngle(userLocation: CLLocation) -> Double {
var lat1 = DegreesToRadians(userLocation.coordinate.latitude)
var lon1 = DegreesToRadians(userLocation.coordinate.longitude)

var lat2 = DegreesToRadians(37.7833);
var lon2 = DegreesToRadians(-122.4167);

var dLon = lon2 - lon1;

var y = sin(dLon) * cos(lat2);
var x = cos(lat1) * sin(lat2) - sin(lat1) * cos(lat2) * cos(dLon);
var radiansBearing = atan2(y, x);
if(radiansBearing < 0.0)
{
radiansBearing += 2*M_PI;
}

return radiansBearing;
}

关键的一步是根据来自func locationManager(manager: CLLocationManager!, didUpdateHeading newHeading: CLHeading!) 方法的度数改变图像。

您还需要确保在您的 info.plist 文件中添加 NSLocationAlwaysUsageDescriptionNSLocationWhenInUseUsageDescription

enter image description here

关于ios - 用箭头替换 GMSMapView 中的蓝点 - Swift,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28988038/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com