博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
在iOS中 简单使用MKMapView显示地图
阅读量:6082 次
发布时间:2019-06-20

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

hot3.png

        在应用开发中,经常会使用到显示地图的功能,地位功能,在ios中 使用MKMapVIew类显示地图, 使用MKMapView 前必须先导入MapKit.framework.

        点击项目target->summary 添加 Mapkit.framework.

       在ViewController.h头文件中导入 #import <MapKit/MapKit.h> 

    

#import 
#import
#import
@interface ViewController : UIViewController@property (nonatomic,strong) MKMapView * myMapView;@end
    

       在ViewController.m 文件的viewDidLoad 方法中添加如下代码   

#import "ViewController.h"#import "MyAnnotation.h"@interface ViewController () 
@end@implementation ViewController- (void)viewDidLoad{ [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. self.view.backgroundColor = [UIColor whiteColor]; self.myMapView = [[MKMapView alloc] initWithFrame:self.view.bounds]; self.myMapView.mapType = MKMapTypeHybrid; self.myMapView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight; self.myMapView.delegate = self; //显示当前位置 self.myMapView.showsUserLocation = YES; [self.view addSubview:self.myMapView]; }- (void)didReceiveMemoryWarning{ [super didReceiveMemoryWarning]; // Dispose of any resources that can be recreated.}-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation{ return YES;}@end

MKMapView 地图类型mapType 属性 有三种类型:

 

enum {

    MKMapTypeStandard = 0,

    MKMapTypeSatellite,

    MKMapTypeHybrid

};

typedef NSUInteger MKMapType;

转载于:https://my.oschina.net/CarlHuang/blog/135589

你可能感兴趣的文章
数组扩展方法之求和
查看>>
astah-professional-7_2_0安装
查看>>
函数是对象-有属性有方法
查看>>
uva 10107 - What is the Median?
查看>>
Linux下基本栈溢出攻击【转】
查看>>
c# 连等算式都在做什么
查看>>
使用c:forEach 控制5个换行
查看>>
java web轻量级开发面试教程摘录,java web面试技巧汇总,如何准备Spring MVC方面的面试...
查看>>
使用ansible工具部署ceph
查看>>
linux系列博文---->深入理解linux启动运行原理(一)
查看>>
Android反编译(一) 之反编译JAVA源码
查看>>
结合当前公司发展情况,技术团队情况,设计一个适合的技术团队绩效考核机制...
查看>>
python-45: opener 的使用
查看>>
cad图纸转换完成的pdf格式模糊应该如何操作?
查看>>
Struts2与Struts1区别
查看>>
网站内容禁止复制解决办法
查看>>
Qt多线程
查看>>
我的友情链接
查看>>
想说一点东西。。。。
查看>>
css知多少(8)——float上篇
查看>>