百度SDK的使用第一天

2022-09-18 23:36:09 字數 1100 閱讀 3393

//獲取自定義的經緯度上新增位置氣泡,大頭釘

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

cllocationcoordinate2d coor;

coor.latitude = 39.915;

coor.longitude = 116.404;

annotation.coordinate = coor;

annotation.title = @"北京";

annotation.subtitle = @"這裡是北京";

[_mapview addannotation:annotation];

//這樣就可以在初始化的時候將 氣泡資訊彈出

//獲取當前位置

[_mapview selectannotation:annotation animated:yes];

_mapview.showsuserlocation = yes;

cllocationcoordinate2d coor1;

bmkuserlocation *userlocation =[[bmkuserlocation alloc] init];

if (userlocation.location != nil)

nslog(@"定位成功");

coor1 = [[userlocation location] coordinate];

nslog(@"%f",coor1.latitude);

nslog(@"%f",coor1.longitude);

coor1 = [[userlocation location] coordinate];

bmkcoordinateregion viewregion = bmkcoordinateregionmake(coor1, bmkcoordinatespanmake(0.02f,0.02f));

bmkcoordinateregion adjustedregion = [_mapview regionthatfits:viewregion];

[_mapview setregion:adjustedregion animated:yes];

第一天 Xcode使用

mac 快捷鍵 command win command c 複製 command v 貼上 command q 關閉應用程式 command w 關閉視窗 1.函式後面一定要有小括號 2.除了注釋,雙引號中,其他位置都不可以有中文或中文符號 command 向左移動 command 注釋,或取消注釋...

Mac MySQL 使用 第一天

2.1系統偏好設定 找到 mysql,然後 start mysql server 2.2 開啟 終端,mysql uroot p 如果提示 commond not found 說明我們需要將 mysql 加入環境變數 cd usr local 檢視此目錄下是否有 mysql vim bash pro...

mysql 第一天 MySQL 系列第一天

mysql 系列第一天這篇文章是黑馬程式設計師 mysql 教程的筆記,好好學習哦。和 mysql 資料庫的互動 客戶端單向連線認證 連線伺服器,認證身份。mysql 資料庫屬於 c s 架構,所以開啟伺服器程式後,需要通過客戶端連線它。mysql 會自帶乙個客戶端程式,可以直接輸入賬號和密碼即可連...