zoukankan      html  css  js  c++  java
  • iPhone之获取当前位置

    来自:http://blog.sina.com.cn/s/blog_4adf31ea010176hq.html

    首先,加入地图包

    接口代码:

    #import <UIKit/UIKit.h>
    #import <MapKit/MapKit.h>
    
    @interface View30 : UIViewController <CLLocationManagerDelegate,MKMapViewDelegate>
    {
         MKMapView *map;
    
    }
    @end

    实现代码:

    - (void)viewDidLoad {
    
        [super viewDidLoad];
    
    //创建位置管理器
    
    CLLocationManager *locationManager = [[CLLocationManager alloc] init];
    
    //设置代理
    
    locationManager.delegate=self;
    
    //指定需要的精度级别
    
    locationManager.desiredAccuracy=kCLLocationAccuracyBest;
    
    //设置距离筛选器
    
    locationManager.distanceFilter=500.0f;
    
    //启动位置管理器
    
    [locationManager startUpdatingLocation];
    
     
    
    MKCoordinateRegion theRegion = { {0.0, 0.0 }, { 0.0, 0.0 } };
    
    theRegion.center=[[locationManager location] coordinate];
    
    [locationManager release];
    
     
    
    //设置地图
    
    map=[[MKMapView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)];
    
    map.delegate=self;
    
    //是否显示用户的位置信息
    
    map.showsUserLocation=YES;
    
    //向上滚动 
    
    [map setZoomEnabled:YES];
    
    //横向滚动
    
    [map setScrollEnabled:YES];
    
    //设置地图范围  越小越精确
    
    theRegion.span.longitudeDelta = 0.05f;
    
    theRegion.span.latitudeDelta = 0.05f;
    
    [map setRegion:theRegion animated:YES];
    
    [self.view addSubview:map];
    
     
    
    }
    
    
    - (MKAnnotationView *)mapView:(MKMapView *)mV viewForAnnotation:(id <MKAnnotation>)annotation
    
    {//注释指针
    
    MKPinAnnotationView *pinView = nil;
    
     
    
    static NSString *defaultPinID = @"mylocation";
    
    pinView = (MKPinAnnotationView *)[map dequeueReusableAnnotationViewWithIdentifier:defaultPinID];
    
    if ( pinView == nil ) 
    
    {
    
    pinView = [[[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:defaultPinID] autorelease];
    
    }
    
    pinView.pinColor = MKPinAnnotationColorRed;
    
    pinView.canShowCallout = YES;
    
    pinView.animatesDrop = YES;
    
    [map.userLocation setTitle:@"我的位置"];
    
    [map.userLocation setSubtitle:@"小标题"];
    
    return pinView;
    
    }

  • 相关阅读:
    还能这样偷懒?用Python实现网站自动签到脚本
    普通爬虫 VS 多线程爬虫!Python爬虫运行时间对比
    中文文献阅读方法及笔记模板
    约束
    可迭代对象补充
    练习题及补充
    内置函数的补充/super/异常值处理
    特殊成员
    嵌套
    面向对象知识点总结补充
  • 原文地址:https://www.cnblogs.com/appwgh/p/2528032.html
Copyright © 2011-2022 走看看