站点模式下,起点和终点的规划。
主要的难点,是区域变更时,如何处理标注。
我们先来讨论两种情况:不跳转区域和跳转区域
将S/E的属性列为
- 站点名
- 站点坐标
- 是否在选定的区域内 —— 只在区域切换时赋值 isInChangedDistrict
- 索引 —— 赋值有两处
- 当S/E 确实处于当前区域(isInChangedDistrict = YES)时,在
viewForAnnotation
时赋值。 -
Cell
选中时赋值
- 当S/E 确实处于当前区域(isInChangedDistrict = YES)时,在
根据上面的逻辑,切换区域时的具体操作步骤如下:
首先必定是移除所有的标注和覆盖物。
- (IBAction)selectRelatedDistrict:(DistrictButton *)sender
中通过代理
在BottomView中添加覆盖物和标注:
[bottomeView.delegate addOverlaysToDistrictWithName:districtName];
[bottomeView.delegate addAnnotationPointInDistrict:annotationArray];
addoverlay回调
去StationInfo中封装一个方法,判断S/E.name是否在districtName所指向的区域中。在这里对S/E.isInChangedDsitrict赋值。
- addoverlay引起的
ViewForOverlay
的相应代理,不需做修改。
addAnnotationPoint回调
在原有的基础上,封装一个函数,用于添加S/E生成的标注。具体的做法:
- 判断S/E.name是否为空,为空就不去生成标注。也就是不添加
- 判断S/E.isInChangedDsitrict, 若为YES, 也不去添加。否则,去生成一个新的标注,标注类为“termiAnnotation”添加之。
- addAnnotation引起的
ViewForAnnotation
的相应代理,变更如下:- 需要判断annotation.title 是否和 S/E.name 相同。若相同,则将annotationView.img改为对应的S/E图。
选中/不选中标注的逻辑如下:
对于didselectAnnotaion
和 didDeselectAnnotation
的做法是一样的
- 对应的的annotation,若annotation.title == S/E.name,
不做任何事。这里可以在S/E中封装一个方法,对于传入的名称,判断是否为S/E.
否则,按正常去更改为选中的背景。
Cell中“选中” —— 将标注定为S/E:
- 由于此时的“选中”是为底栏发起,也就是说此时处于备选的站点,一定是在区域内的,因此不用去考虑区域外的S/E站点情况。
- 选中后,判断当前站点是否为S/E,若是,则不做任何操作。若非,则继续判断S/E哪个为空就写入哪个。
- 同时,取出对应的annotation View,更改他的背景图
BMKAnnotationView *annotationView = [self.BaseBaiduMapView viewForAnnotation:annotation];
annotationView.image = [UIImage imageNamed:@"起始站点"];
S/E.isInChangedDsitrict = YES
删除站点为S/E的逻辑如下:
- 判断当前S/E.isInChangedDsitrict, 若为NO,remove
termiAnnotation
类的annotation
// termiAnnotation有两个,S/E,要判断传进来的是哪一个
[annotation isKindOfClass:[terminalStationAnnotation class]] && [[annotation title] isEqualToString:station.name]
同时,将S/E.name = nil, 不用去管坐标, 坐标用不到。
- 若为YES,根据S/E.index,得到annotation,再得到annotationView,此时务必将他强转为(MyPinAnnotationView否则会出错),然后去更改背景, 最后复位S/E.index,同时将S/E.name = nil,isInChangedDsitrict=NO
规划路径时候的方法
难点在于,我们需要的是,规划好路径后,将所有的标注都移除,然后再生成两个S/E的标注吗?如果上面的逻辑都成立,应该没有问题。
// 先去掉所有的标注和覆盖物,规划路径
[self.BaseBaiduMapView removeAnnotations:self.BaseBaiduMapView.annotations];
[self.BaseBaiduMapView removeOverlays:self.BaseBaiduMapView.overlays];
CLLocationCoordinate2D startPoint = self.guideStartStation.coordiate;
CLLocationCoordinate2D endPoint = self.guideEndStation.coordiate;
[[BaiduRouteSearchTool shareInstance] pathGuideWithStart:startPoint end:endPoint];
[self stopMapviewTransform];
// 再添加标注
self.guideStartStation.isInChangedDistrict = NO;
self.guideEndStation.isInChangedDistrict = NO;
[self addTermiStationAnnotations];
// 通知底栏复位模式,让底栏显示出来的时候所有按键是未选中的状态,方便下次切换到站点搜索模式
[[NSNotificationCenter defaultCenter] postNotificationName:DISTRICT_BTN_SEL_RADIO
object:@"复位模式"];
网友评论