iOS 原生地图定位,视图中心加大头针,地理位置返编码

2023-11-01 00:08

本文主要是介绍iOS 原生地图定位,视图中心加大头针,地理位置返编码,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

info.plist  按需配置
模拟器 地理位置在国外的地理位置返编码没有办法获取

Privacy - Location Always and When In Use Usage Description
Privacy - Location Always Usage Description
Privacy - Location When In Use Usage Description

.h

#import <UIKit/UIKit.h>NS_ASSUME_NONNULL_BEGINtypedef void(^BackBlock)(double lat,double lot,NSString *city);@interface MapVC : UIViewController@property(nonatomic,copy)BackBlock backBlock;@endNS_ASSUME_NONNULL_END

.m

#import "MapVC.h"
#import <CoreLocation/CoreLocation.h>
#import <MapKit/MapKit.h>
@interface MapVC ()
<
CLLocationManagerDelegate,
MKMapViewDelegate
>
@property(nonatomic,strong)MKMapView *mapView;
/// 定位管理器
@property(nonatomic,strong)CLLocationManager *locationManager;
/// 移动后的位置标记
@property(nonatomic,strong)CLPlacemark *place;/ 放大缩小用
//@property (nonatomic) MKCoordinateRegion region;
@end@implementation MapVC- (void)viewDidLoad {[super viewDidLoad];// Do any additional setup after loading the view.[self.view addSubview:self.mapView];[self.locationManager startUpdatingLocation];
}-(void)viewWillDisappear:(BOOL)animated{[super viewWillDisappear:animated];if (self.backBlock){self.backBlock(self.place.location.coordinate.latitude, self.place.location.coordinate.longitude,self.place.name);}
}#pragma mark ————————— 地图位置更新 —————————————
- (void)mapView:(MKMapView *)mapView regionDidChangeAnimated:(BOOL)animated
{MKCoordinateRegion region;CLLocationCoordinate2D centerCoordinate = mapView.region.center;region.center = centerCoordinate;NSLog(@" 经纬度 %f,%f",centerCoordinate.latitude, centerCoordinate.longitude);CLLocation *location = [[CLLocation alloc]initWithLatitude:centerCoordinate.latitude longitude:centerCoordinate.longitude];[self cityNameFromLoaction:location block:^(CLPlacemark *place, NSString *city) {}];}#pragma mark-CLLocationManagerDelegate
/**
*  更新到位置之后调用
*
*  @param manager   位置管理者
*  @param locations 位置数组
*/
-(void)locationManager:(CLLocationManager *)manager didUpdateLocations:( NSArray *)locations
{NSLog(@"定位到了");//停止位置更新[manager stopUpdatingLocation];CLLocation *location = [locations firstObject];//位置更新后的经纬度CLLocationCoordinate2D theCoordinate =  location.coordinate;//设置地图显示的中心及范围MKCoordinateRegion theRegion;theRegion.center = theCoordinate;// 坐标跨度MKCoordinateSpan theSpan;theSpan.latitudeDelta = 0.01;theSpan.longitudeDelta = 0.01;theRegion.span = theSpan;[self.mapView setRegion:theRegion];[self cityNameFromLoaction:location block:^(CLPlacemark *place, NSString *city) {NSLog(@"位置:%@", place.name);}];
}#pragma mark ————————— 地理位置返编码 —————————————
-(void)cityNameFromLoaction:(CLLocation *)location block:(void(^)(CLPlacemark *place ,NSString *city))block
{__weak typeof(self) weakSelf = self;CLGeocoder *geocoder = [[CLGeocoder alloc]init];[geocoder reverseGeocodeLocation:location completionHandler:^(NSArray<CLPlacemark *> * _Nullable placemarks, NSError * _Nullable error) {if (!error){for (CLPlacemark *place in placemarks){weakSelf.place = place;NSString *city = place.name;// 设置地图显示的类型及根据范围进行显示  安放大头针[weakSelf addPointFromCoordinate:place.location.coordinate title:city];block(place ,place.name);}}else{NSLog(@"%@",error);}}];
}#pragma mark ————————— 长按添加大头针事件 —————————————
- ( void )lpgrClick:( UILongPressGestureRecognizer *)lpgr
{// 判断只在长按的起始点下落大头针if (lpgr.state == UIGestureRecognizerStateBegan ){// 首先获取点CGPoint point = [lpgr locationInView:self.mapView];// 将一个点转化为经纬度坐标CLLocationCoordinate2D center = [self.mapView convertPoint:point toCoordinateFromView:self.mapView];[self addPointFromCoordinate:center title:@"位置"];}
}#pragma mark ————————— 添加大头针 —————————————
-(void)addPointFromCoordinate:(CLLocationCoordinate2D)coordinatetitle:(NSString *)title
{NSLog(@"当前城市:%@" ,title);self.title = title;MKPointAnnotation *pinAnnotation = [[MKPointAnnotation alloc] init];pinAnnotation.coordinate = coordinate;pinAnnotation.title = title;[self.mapView removeAnnotations:self.mapView.annotations];[self.mapView addAnnotation:pinAnnotation];
}/***  授权状态发生改变时调用**  @param manager 位置管理者*  @param status  状态*/
-(void)locationManager:(CLLocationManager *)manager didChangeAuthorizationStatus:(CLAuthorizationStatus)status
{switch (status) {// 用户还未决定case kCLAuthorizationStatusNotDetermined:{NSLog(@"用户还未决定");break;}// 问受限case kCLAuthorizationStatusRestricted:{NSLog(@"访问受限");break;}// 定位关闭时和对此APP授权为never时调用case kCLAuthorizationStatusDenied:{// 定位是否可用(是否支持定位或者定位是否开启)if([CLLocationManager locationServicesEnabled]){NSLog(@"定位开启,但被拒");}else{NSLog(@"定位关闭,不可用");}break;}// 获取前后台定位授权case kCLAuthorizationStatusAuthorizedAlways:{//  case kCLAuthorizationStatusAuthorized: // 失效,不建议使用NSLog(@"获取前后台定位授权");break;}// 获得前台定位授权case kCLAuthorizationStatusAuthorizedWhenInUse:{NSLog(@"获得前台定位授权");break;}default:break;}
}//获取当前位置
-(CLLocationManager *)locationManager
{if (!_locationManager){CLLocationManager * locationManager = [[CLLocationManager alloc] init];locationManager.delegate = self ;//kCLLocationAccuracyBest:设备使用电池供电时候最高的精度locationManager.desiredAccuracy = kCLLocationAccuracyNearestTenMeters;locationManager.distanceFilter = 50.0f;if (([[[ UIDevice currentDevice] systemVersion] doubleValue] >= 8.0)){[locationManager requestAlwaysAuthorization];}_locationManager = locationManager;}return _locationManager;
}-(MKMapView *)mapView
{if (!_mapView){MKMapView *mapView = [[MKMapView alloc]init];// 接受代理mapView.delegate = self;mapView = [[MKMapView alloc]initWithFrame:self.view.bounds];mapView.zoomEnabled = YES ;mapView.showsUserLocation = YES ;mapView.scrollEnabled = YES ;mapView.delegate = self ;// 长按手势  长按添加大头针UILongPressGestureRecognizer *lpgr = [[UILongPressGestureRecognizer alloc]initWithTarget:self action: @selector (lpgrClick:)];[mapView addGestureRecognizer:lpgr];_mapView = mapView;}return _mapView;
}#pragma mark ————————— 放大事件 —————————————
- (void)addAct
{
//    CLLocationCoordinate2D centCoor = _region.center;
//    MKCoordinateSpan span = _region.span;
//    span.latitudeDelta *= 2;
//    span.longitudeDelta *= 2;
//    MKCoordinateRegion region = MKCoordinateRegionMake(centCoor, span);
//    [self.mapView setRegion:region];
}#pragma mark ————————— 缩小事件—————————————
- (void)minAct
{
//    CLLocationCoordinate2D centCoor = _region.center;
//    MKCoordinateSpan span = _region.span;
//    span.latitudeDelta *= 0.5;
//    span.longitudeDelta *= 0.5;
//    MKCoordinateRegion region = MKCoordinateRegionMake(centCoor, span);
//    [self.mapView setRegion:region];
}-(void)dealloc{NSLog(@"");
}
/*
#pragma mark - Navigation// In a storyboard-based application, you will often want to do a little preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {// Get the new view controller using [segue destinationViewController].// Pass the selected object to the new view controller.
}
*/@end

调用

#import "MapVC.h"MapVC *vc = [[MapVC alloc]init];__weak typeof(self) weakSelf = self;vc.backBlock = ^(double lat, double lot, NSString * _Nonnull city) {DLog(@"%.15f = %.15f",lat,lot);weakSelf.lot = lot;weakSelf.lat = lat;weakSelf.title = city;};[self.navigationController pushViewController:vc animated:YES];

 

这篇关于iOS 原生地图定位,视图中心加大头针,地理位置返编码的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/319061

相关文章

无人叉车3d激光slam多房间建图定位异常处理方案-墙体画线地图切分方案

墙体画线地图切分方案 针对问题:墙体两侧特征混淆误匹配,导致建图和定位偏差,表现为过门跳变、外月台走歪等 ·解决思路:预期的根治方案IGICP需要较长时间完成上线,先使用切分地图的工程化方案,即墙体两侧切分为不同地图,在某一侧只使用该侧地图进行定位 方案思路 切分原理:切分地图基于关键帧位置,而非点云。 理论基础:光照是直线的,一帧点云必定只能照射到墙的一侧,无法同时照到两侧实践考虑:关

跨国公司撤出在华研发中心的启示:中国IT产业的挑战与机遇

近日,IBM中国宣布撤出在华的两大研发中心,这一决定在IT行业引发了广泛的讨论和关注。跨国公司在华研发中心的撤出,不仅对众多IT从业者的职业发展带来了直接的冲击,也引发了人们对全球化背景下中国IT产业竞争力和未来发展方向的深思。面对这一突如其来的变化,我们应如何看待跨国公司的决策?中国IT人才又该如何应对?中国IT产业将何去何从?本文将围绕这些问题展开探讨。 跨国公司撤出的背景与

安卓链接正常显示,ios#符被转义%23导致链接访问404

原因分析: url中含有特殊字符 中文未编码 都有可能导致URL转换失败,所以需要对url编码处理  如下: guard let allowUrl = webUrl.addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed) else {return} 后面发现当url中有#号时,会被误伤转义为%23,导致链接无法访问

C++ | Leetcode C++题解之第393题UTF-8编码验证

题目: 题解: class Solution {public:static const int MASK1 = 1 << 7;static const int MASK2 = (1 << 7) + (1 << 6);bool isValid(int num) {return (num & MASK2) == MASK1;}int getBytes(int num) {if ((num &

C语言 | Leetcode C语言题解之第393题UTF-8编码验证

题目: 题解: static const int MASK1 = 1 << 7;static const int MASK2 = (1 << 7) + (1 << 6);bool isValid(int num) {return (num & MASK2) == MASK1;}int getBytes(int num) {if ((num & MASK1) == 0) {return

数据视图(AngularJS)

<!DOCTYPE html><html ng-app="home.controller"><head><meta charset="utf-8"><title>数据视图</title><link href="page/common/css/bootstrap.min.css" rel="stylesheet"><script src="page/common/js/angular.js"></

【iOS】MVC模式

MVC模式 MVC模式MVC模式demo MVC模式 MVC模式全称为model(模型)view(视图)controller(控制器),他分为三个不同的层分别负责不同的职责。 View:该层用于存放视图,该层中我们可以对页面及控件进行布局。Model:模型一般都拥有很好的可复用性,在该层中,我们可以统一管理一些数据。Controlller:该层充当一个CPU的功能,即该应用程序

form表单提交编码的问题

浏览器在form提交后,会生成一个HTTP的头部信息"content-type",标准规定其形式为Content-type: application/x-www-form-urlencoded; charset=UTF-8        那么我们如果需要修改编码,不使用默认的,那么可以如下这样操作修改编码,来满足需求: hmtl代码:   <meta http-equiv="Conte

js定位navigator.geolocation

一、简介   html5为window.navigator提供了geolocation属性,用于获取基于浏览器的当前用户地理位置。   window.navigator.geolocation提供了3个方法分别是: void getCurrentPosition(onSuccess,onError,options);//获取用户当前位置int watchCurrentPosition(

全英文地图/天地图和谷歌瓦片地图杂交/设备分布和轨迹回放/无需翻墙离线使用

一、前言说明 随着风云局势的剧烈变化,对我们搞软件开发的人员来说,影响也是越发明显,比如之前对美对欧的软件居多,现在慢慢的变成了对大鹅和中东以及非洲的居多,这两年明显问有没有俄语或者阿拉伯语的输入法的增多,这要是放在2019年以前,一年也遇不到一个人问这种需求场景的。 地图应用这块也是,之前的应用主要在国内,现在慢慢的多了一些外国的应用场景,这就遇到一个大问题,我们平时主要开发用的都是国内的地