博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS地图中添加大头针
阅读量:6120 次
发布时间:2019-06-21

本文共 1732 字,大约阅读时间需要 5 分钟。

hot3.png

        首先,我们得新建一个遵守MKAnnotation的对象,并且拥有以下几个属性:

LHAnnotation : NSObject<MKAnnotation>

// Center latitude and longitude of the annotion view.

// The implementation of this property must be KVO compliant.

@property (nonatomic, assign) CLLocationCoordinate2D coordinate;

// Title and subtitle for use by selection UI.

@property (nonatomic, copy) NSString *title;

@property (nonatomic, copy) NSString *subtitle;

然后了,在需要它的地方导入这个对象,LHAnnotation,就行了。

下面是主要的代码(纯代码,没有使用storyboard):

//  Created by 妖精的尾巴 on 15-8-13.

//  Copyright (c) 2015 妖精的尾巴. All rights reserved.

//

#import "ViewController.h"

#import <MapKit/MapKit.h>

#import "LHAnnotation.h"

ViewController ()<MKMapViewDelegate>

@property(nonatomic,strong)MKMapView* mapView;

@end

@implementation ViewController

- (void)viewDidLoad

{

    [super viewDidLoad];

    [self setMap];

    LHAnnotation* annotation=[[LHAnnotation alloc]init];

    annotation.coordinate=CLLocationCoordinate2DMake(39.924115, 116.186063);

    annotation.title=@"石景山区";

    annotation.subtitle=@"领袖大厦B";

    [self.mapView addAnnotation:annotation];

}

-(void)setMap

{

    self.mapView=[[MKMapView alloc]init];

    self.mapView.frame=self.view.bounds;

    /**

     *mapType

     *

     * MKMapTypeStandard = 0,

       MKMapTypeSatellite,

       MKMapTypeHybrid

     */

    self.mapView.mapType=MKMapTypeStandard;

    /**

     *Set to YES to add the user location annotation to the map and start updating its location

     */

    self.mapView.showsUserLocation=NO;

    /**

     *Zoom and scroll are enabled by default.

     */

    self.mapView.scrollEnabled=YES;

    self.mapView.zoomEnabled=YES;

    /**

     *Rotate and pitch are enabled by default on Mac OS X and on iOS 7.0 and later.

     */

    self.mapView.pitchEnabled=YES;

    self.mapView.rotateEnabled=YES;

    [self.view addSubview:self.mapView];

}

运行程序截图如下 

165851_ht11_2332019.png

转载于:https://my.oschina.net/iOSliuhui/blog/491948

你可能感兴趣的文章
AOP
查看>>
我的友情链接
查看>>
NGUI Label Color Code
查看>>
.NET Core微服务之基于Polly+AspectCore实现熔断与降级机制
查看>>
vue组件开发练习--焦点图切换
查看>>
浅谈OSI七层模型
查看>>
Webpack 2 中一些常见的优化措施
查看>>
移动端响应式
查看>>
python实现牛顿法求解求解最小值(包括拟牛顿法)【最优化课程笔记】
查看>>
js中var、let、const的区别
查看>>
腾讯云加入LoRa联盟成为发起成员,加速推动物联网到智联网的进化
查看>>
从Python2到Python3:超百万行代码迁移实践
查看>>
Windows Server已可安装Docker,Azure开始支持Mesosphere
查看>>
简洁优雅地实现夜间模式
查看>>
四年C++老炮,转攻Python实践分享
查看>>
react学习总结
查看>>
微软正式发布PowerShell Core 6.0
查看>>
Amazon发布新的会话管理器
查看>>
InfoQ趋势报告:DevOps 和云计算
查看>>
舍弃Python,为什么知乎选用Go重构推荐系统?
查看>>