`

Map定位,标记位置的使用

    博客分类:
  • ios
ios 
阅读更多
iOS上使用地图比Android要方便,只需要新建一个MKMapView,addSubView即可。这次要实现的效果如下:


1 [img]

[/img]


有标注(大头针),定位,地图。







1、添加地图

1.1 新一个Single View app ,选择默认项,创建后,在ViewController.h
#import <UIKit/UIKit.h>
#import <MapKit/MapKit.h>
#import <CoreLocation/CoreLocation.h>

@interface ViewController : UIViewController 
<MKMapViewDelegate, CLLocationManagerDelegate> {
    MKMapView *map;
    CLLocationManager *locationManager;
}
@end


1.2在ViewController.m中添加
- (void)viewDidLoad
{
    map = [[MKMapView alloc] initWithFrame:[self.view bounds]];
	map.showsUserLocation = YES;
	map.mapType = MKMapTypeSatellite;
    [self.view addSubview:map];


    [super viewDidLoad];
	// Do any additional setup after loading the view, typically from a nib.
}



运行:

OMG,看到的是世界地图。怎么定位到指定的位置呢?比如定位回来伟大的祖国首都?

这里map.mapType =MKMapTypeSatellite;我用到是卫星地图,可以使用标准的地图,

map.mapType =MKMapTypeStandard;

2[img]

[/img]
注意,如果此时你编译有错误,请拉到博客最后查看 :5、 遇到的问题



2、定位到指定经纬度:
CLLocationCoordinate2D coords = CLLocationCoordinate2DMake(39.915352,116.397105);
	
	float zoomLevel = 0.02;
	MKCoordinateRegion region = MKCoordinateRegionMake(coords, MKCoordinateSpanMake(zoomLevel, zoomLevel));
	[map setRegion:[map regionThatFits:region] animated:YES];


这样,就我们就定位的了故宫了。
3 [img]

[/img]






3、添加标注大头针

3.1 新建一个标注类:CustomAnnotation

按Command+N,继承NSObject。在CustomAnnotation.h 和CustomAnnotation.m文件添加如下代码:
#import <Foundation/Foundation.h>
#import <MapKit/MapKit.h>

@interface CustomAnnotation : NSObject 
<MKAnnotation>
{
	CLLocationCoordinate2D coordinate;
	NSString *title;
	NSString *subtitle;
}
-(id) initWithCoordinate:(CLLocationCoordinate2D) coords;

@property (nonatomic, readonly) CLLocationCoordinate2D coordinate;
@property (nonatomic, retain) NSString *title;
@property (nonatomic, retain) NSString *subtitle;

@end


#import "CustomAnnotation.h"

@implementation CustomAnnotation
@synthesize coordinate, title, subtitle;

-(id) initWithCoordinate:(CLLocationCoordinate2D) coords
{
	if (self = [super init]) {
		coordinate = coords;
	}
	return self;
}
@end




3.2使用大头针,

新建个方法添加大头针的
-(void)createAnnotationWithCoords:(CLLocationCoordinate2D) coords {
	CustomAnnotation *annotation = [[CustomAnnotation alloc] initWithCoordinate: 
									coords];
	annotation.title = @"标题";
	annotation.subtitle = @"子标题";
	[map addAnnotation:annotation];
}


调用
CLLocationCoordinate2D coords = CLLocationCoordinate2DMake(39.915352,116.397105);
	
	float zoomLevel = 0.02;
	MKCoordinateRegion region = MKCoordinateRegionMake(coords, MKCoordinateSpanMake(zoomLevel, zoomLevel));
	[map setRegion:[map regionThatFits:region] animated:YES];

	
	[self createAnnotationWithCoords:coords];


这样我们就把大头针定位在故宫了

4 [img]

[/img]





4、定位到当前位置并获取当前经纬度

前面我们已经添加了locationManager,现在在DidViewLoad里直接调用
locationManager = [[CLLocationManager alloc] init];
    locationManager.delegate = self;
    [locationManager startUpdatingLocation];


实现协议方法收到定位成功后的经纬度
- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation {
    [locationManager stopUpdatingLocation];
    
    NSString *strLat = [NSString stringWithFormat:@"%.4f",newLocation.coordinate.latitude];
    NSString *strLng = [NSString stringWithFormat:@"%.4f",newLocation.coordinate.longitude];
    NSLog(@"Lat: %@  Lng: %@", strLat, strLng);

}

- (void)locationManager:(CLLocationManager *)manager didFailWithError:(NSError *)error {
    NSLog(@"locError:%@", error);

}



5 [img]

[/img]


定位后,移动到当前位置:
- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation {
    [locationManager stopUpdatingLocation];
    
    NSString *strLat = [NSString stringWithFormat:@"%.4f",newLocation.coordinate.latitude];
    NSString *strLng = [NSString stringWithFormat:@"%.4f",newLocation.coordinate.longitude];
    NSLog(@"Lat: %@  Lng: %@", strLat, strLng);
    
    CLLocationCoordinate2D coords = CLLocationCoordinate2DMake(newLocation.coordinate.latitude,newLocation.coordinate.longitude);
	float zoomLevel = 0.02;
	MKCoordinateRegion region = MKCoordinateRegionMake(coords,MKCoordinateSpanMake(zoomLevel, zoomLevel));
	[map setRegion:[map regionThatFits:region] animated:YES];
}


6 [img]

[/img]
定位到了当前位置。





5、会遇到的问题:

运行是发现了编译错误:

Undefined symbols for architecture i386:

  "_CLLocationCoordinate2DMake", referenced from:

      -[ViewController viewDidLoad] in ViewController.o

      -[ViewController locationManager:didUpdateToLocation:fromLocation:] in ViewController.o

  "_OBJC_CLASS_$_MKMapView", referenced from:

      objc-class-ref in ViewController.o

  "_OBJC_CLASS_$_CLLocationManager", referenced from:

      objc-class-ref in ViewController.o

ld: symbol(s) not found for architecture i386

clang: error: linker command failed with exit code 1 (use -v to see invocation)
这是为什么呢?没有添加对应的FrameWork。我使用的是4.3.2版本的XCode,添加方法如下:

7 [img]

[/img]

选择项目,TARGETS ,点加号,添加两个framework
8 [img]
,[img]

[/img]
[/img]
就好了。


如何发送IOS模拟器经纬度?

5.0以上的模拟器才能用这个功能,打开模拟:
9 [img]

[/img]

这样就能发送模拟的当前位置了。












  • 大小: 391.7 KB
  • 大小: 246.1 KB
  • 大小: 261.8 KB
  • 大小: 121.8 KB
  • 大小: 340.9 KB
  • 大小: 211.1 KB
  • 大小: 113.5 KB
  • 大小: 20.1 KB
  • 大小: 67 KB
  • 大小: 19.5 KB
分享到:
评论

相关推荐

    google MAP定位

    5. **显示位置标记**:在地图上添加标记表示用户位置,并可动态更新标记位置以反映用户移动。 四、最佳实践 1. **性能优化**:合理使用缓存,避免频繁请求位置信息,减少对用户设备电量和数据流量的消耗。 2. **...

    SuperMap 定位 标记实例

    在“SuperMap定位标记实例”中,我们将深入探讨如何利用SuperMap进行精确的地理位置定位以及创建和管理地图上的标记。这个主题涉及到GIS的基本操作,对于城市规划、环境监测、交通管理等领域的工作人员来说至关重要...

    vue使用elementui结合高德地图的定位以及位置显示

    下面将详细解释如何在Vue项目中实现ElementUI与高德地图的整合,特别是定位和位置标记功能。 首先,我们需要在项目中引入ElementUI和高德地图API。安装ElementUI可以通过npm命令`npm install element-ui --save`...

    IOS map 定位 Demo

    5. **自定义定位标记**: 如果需要自定义蓝点,可以创建一个`MKAnnotationView`的子类,重写`MKMapViewDelegate`的`viewFor annotation:`方法: ```swift func mapView(_ mapView: MKMapView, viewFor ...

    GoogleMap定位系统、与Webservice连接

    在GoogleMap定位系统和Web服务连接中,Service常用于持续获取位置更新或者在后台处理数据请求。使用Service可以避免因为用户离开应用界面而中断这些任务,但同时也需要考虑服务的生命周期管理和资源消耗。 **...

    google map 定位搜索

    在IT行业中,Google Map是一个广泛使用的地图服务,它提供了丰富的功能,包括定位、搜索和模式选择等。这个项目显然涉及到如何在应用中集成并利用Google Maps API来实现这些功能。以下是对这些知识点的详细说明: 1...

    join map4作图软件

    遗传图谱是描述遗传标记在染色体上相对位置的模型,它对于理解基因在染色体上的排列至关重要。 Join Map 4的作图功能强大且灵活,可以处理各种遗传模型,包括F2、RIL(Recombinant Inbred Lines)、BC(Backcross)...

    用C#开发的百度地图根据经纬度标记地图上的位置

    1. JavaScript交互:在C#中,可以通过`WebBrowser.Document.InvokeScript`方法调用JavaScript函数,传递经纬度数据,然后在JavaScript中使用百度地图API的`marker`对象在地图上标记位置。 2. 示例代码: ```csharp ...

    googlemap卫星定位

    使用`google.maps.Map()`创建地图实例,设置中心点为输入的经纬度,然后使用`google.maps.Marker()`创建标记显示在地图上。 5. **事件监听**:添加事件监听器,当用户更改经纬度时,更新地图的中心点。 从提供的...

    map_html5地图定位_

    HTML5地图定位技术是现代网页应用中不可或缺的一部分,它使得开发者能够实现在网页上显示地图、定位用户位置等功能。在本教程中,我们将深入探讨如何使用HTML5与百度地图API来实现这一目标。 首先,HTML5引入了...

    googlemap折线标记路径

    本教程将聚焦于如何在Android应用中使用Google Maps API来绘制折线标记路径。 首先,你需要在你的Android项目中添加Google Play Services库,这是使用Google Maps API的前提。在`build.gradle`文件中,添加以下依赖...

    Google Map API 使用示例

    Google Map API 是一款强大的工具,它允许开发者在自己的网站或应用程序中嵌入地图功能,提供定位、导航、地理编码、路线规划等多种服务。本示例将深入探讨如何使用 Google Map API,帮助你理解和掌握其核心概念及...

    微信小程序开发之map地图组件定位并手动修改位置偏差

    通常这种情况发生在使用了坐标转换后,需要根据实际需求对地图上的标记位置进行手动修正。开发者可以基于获取到的当前位置信息,调整longitude和latitude的值来校正位置偏差。 在实际开发中,开发者还需要注意微信...

    QML地图Map中使用QPainterPath,并显示任意点经纬度位置

    我将QPainterPath在Map中进行使用并进行绘制,并使用C++和Qml中的函数进行相互调用计算获取点屏幕坐标和经纬度坐标。例子中使用了QPainterPath的QPainterPath::pointAtPercent获取绘制的轨迹全过程中的各个位置的...

    html5定位获取当前位置并在百度地图上显示

    在这里,我们主要使用`getCurrentPosition()`来获取用户的一次性位置信息。 ```javascript if (navigator.geolocation) { navigator.geolocation.getCurrentPosition(function(position) { var latitude = ...

    Android_Map_Api_使用和开发定位

    通过 Android Map API,开发者可以轻松地将地图集成到自己的应用程序中,并实现诸如定位用户当前位置、在地图上标记地点以及获取坐标对应地址等功能。本文将详细介绍如何使用 Android Map API 来实现地图上的位置...

    Android地图定位googleSDK使用

    总结来说,使用Android中的Google Maps SDK和Google Location SDK可以实现地图展示和定位功能。通过添加依赖、配置权限、初始化地图、创建FusedLocationProviderClient对象以及监听位置更新,我们可以实现基本的地图...

    Android Google Map v2,继承FragmentActivity 使用MapFragment实现定位

    在Android应用开发中,Google Maps API v2是一个强大的工具,它允许开发者集成地图功能到他们的应用程序中,包括定位、导航、标记等。本教程将详细讲解如何在Android项目中使用Google Maps API v2,通过继承`...

    地图上标记位置

    这个“地图上标记位置”的项目很可能是一个实现这一功能的实例。让我们详细探讨一下如何在Android中实现地图标记以及相关的技术点。 1. **集成地图API** Android提供Google Maps SDK,允许开发者将Google地图集成...

    百度高精度IP定位-位置查询源码

    标题中的“百度高精度IP定位-位置查询源码”指的是使用百度地图API开发的一个功能,该功能能够通过用户的IP地址获取其精确的位置信息。在互联网服务中,IP定位是一种常见的技术,它允许开发者为用户提供基于他们网络...

Global site tag (gtag.js) - Google Analytics