IOS 定位和地图学习

MKMap 学习

CoreLocation

1. 获取位置服务权限,需要改项目info文件
2. 代理方法获取位置信息

参考 http://www.cnblogs.com/kenshincui/p/4125570.html

MKMap & MKAnnotation

1. 如何自定义MKAnnotation
2. 开始定位中心点到用户位置

参考:http://blog.csdn.net/pre_eminent/article/details/38816255

回到中心按钮半透明透明实现

_locateButton=[TransparentButton new];
//图标 
 [_locateButton setImage:[UIImage imageNamed:@"icon_map_locate"] forState:UIControlStateNormal];
//透明背景
 [_locateButton setBackgroundImage:[UIImage imageWithColor:UIColorRGBA(0X3C5264, 0.75)] forState:UIControlStateNormal];
    _locateButton.tintColor=[UIColor blackColor];
//圆角    
_locateButton.layer.masksToBounds = YES;
    _locateButton.layer.cornerRadius = 6.0;

模拟器 模拟GPS位置

生成 GPX文件工具 http://gpx-poi.com/
    原文作者:hqman
    原文地址: https://segmentfault.com/a/1190000002803540
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞