
MapSDK
不在犯二的IT男
码农一个,进修中!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
ios Map 开发笔记三 3D地图
self.mapView.delegate = self; self.mapView.centerCoordinate = CLLocationCoordinate2DMake(45.748737, 126.699791); self.mapView.camera.altitude = 200; self.mapView.camera.pitch = 70;原创 2014-01-24 17:53:35 · 1562 阅读 · 0 评论 -
ios Map 开发笔记 四 导航画线
- (void)viewDidLoad { self.mapView.delegate = self; CLLocationCoordinate2D centerPort = {45.748637,126.699891}; MKCoordinateSpan coordinateSpin = MKCoordinateSpanMake(0.05, 0.原创 2014-02-11 08:53:25 · 2948 阅读 · 0 评论 -
ios Map 开发笔记二 地图
// // MapViewController.m // MapDemo // // Created by lengshengren on 14-1-24. // Copyright (c) 2014年 Allen. All rights reserved. // #import "MapViewController.h" @interface MapVie原创 2014-01-24 17:51:38 · 6102 阅读 · 2 评论 -
ios8 CLLocationManager开发笔记一 定位
- (void)viewDidLoad { [super viewDidLoad]; locationManager = [[CLLocationManager alloc]init]; self.locationManager.delegate = self; self.locationManager.desiredAccuracy = kCLL原创 2014-01-24 17:49:56 · 1515 阅读 · 0 评论