导航画线

导航画线本质上是在mapView上添加遮盖物。数据交由苹果处理(苹果找高德地图)

画线可以分为三大步骤,每一步都必不可少:

1.定位

确定当前位置-->和前面讲过的定位相同,创建位置管理器并请求用户授权即可

2.请求目的地和当前位置间的折线(polyline)

请求折线的核心代码:

//初始化方向对象

MKDirections *direction = [[MKDirections alloc] initWithRequest:request];

[direction calculateDirectionsWithCompletionHandler:^(MKDirectionsResponse * _Nullable response, NSError * _Nullable error) {

for (MKRoute *route in response.routes) {

//折线

MKPolyline *polyline = route.polyline;

[self.mapView addOverlay:polyline];

}

}];

由于这里类比较多,记忆难度大,我建议同学们只记住上面的核心代码,反推出来即可。

****方向对象需要一个MKDirectionsRequest,根据source和destination传入mapItem类型的当前位置和目的地位置

//方向请求

MKDirectionsRequest *request = [[MKDirectionsRequest alloc] init];

//请求的当前位置

request.source = mapItem;

//请求的目的地位置

request.destination = destationItem;

****得到当前位置和目的地位置的mapItem和导航时方法相同.

3.创建渲染物对象

在mapView代理方法mapView: rendererForOverlay: 中根据折线创建渲染物,并设置颜色。

//折线渲染物

MKPolylineRenderer *polylineRenderer = [[MKPolylineRenderer alloc] initWithOverlay:overlay];

//折线颜色

polylineRenderer.strokeColor = [UIColor redColor];

返回渲染物交由系统处理:

return polylineRenderer;

你可能感兴趣的:(导航画线)