地圖無法定位當前位置,蘋果地圖無法定位當前位置
地圖如何定位到當前位置?
以小米手機為例
方法如下
1、首先打開手機擊打開。
2、回到手機的桌面找到“設置”選項打開。
2、打開設置界面找到“定位服務”選項,如下圖所示,點擊打開。
3、如下圖,進入定位服務界面。
4、在里面會看到手機上所有安裝的應用,找到地圖打開。
5、最后打開的界面選擇“允許”即可。
地圖 定位的實現(xiàn)
今天發(fā)現(xiàn)自己好笨啊。。。一直在搞定位,想為什么會是空的,原來定位也是需要代理去實現(xiàn)的
在初始化地圖的時候,也就是在viewdidload里面是這樣的
[objc] view plain copy
mapview.showsuserlocation = yes;
if (mapview.userlocation.location != nil)
{
nslog(@"定位成功");
coor = [[mapview.userlocation location] coordinate];
nslog(@"%f",coor.latitude);
nslog(@"%f",coor.longitude);
}
bmkcoordinateregion viewregion = bmkcoordinateregionmake(coor, bmkcoordinatespanmake(0.02f,0.02f));
bmkcoordinateregion adjustedregion = [mapview regionthatfits:viewregion];
[mapview setregion:adjustedregion animated:yes];
一直以為是這樣的呢,因為設定了showuserlocation 在去取到當前的userlocation就好了呢,這樣做是不會立馬就定位到的,它內部的實現(xiàn)是在子線程去定位,
然后通過代理方法去更新當前的用戶位置的,好暈啊,仔細一找 ,就找到了這個更新用戶當前位置的代理方法
[objc] view plain copy
/**
*用戶位置更新后,會調用此函數
*@param mapview 地圖view
*@param userlocation 新的用戶位置
*/
- (void)mapview:(bmkmapview *)mapview didupdateuserlocation:(bmkuserlocation *)userlocation;
那么就去實現(xiàn)它好了,這個時候應該是定位到了用戶的位置了,也就是這個userlocation了
[objc] view plain copy
#pragma mark mapviewdelegate 代理方法
- (void)mapview:(bmkmapview *)mapview1 didupdateuserlocation:(bmkuserlocation *)userlocation
{
bmkcoordinateregion region;
region.center.latitude = userlocation.location.coordinate.latitude;
region.center.longitude = userlocation.location.coordinate.longitude;
region.span.latitudedelta = 0.2;
region.span.longitudedelta = 0.2;
if (mapview)
{
mapview.region = region;
nslog(@"當前的坐標是: %f,%f",userlocation.location.coordinate.latitude,userlocation.location.coordinate.longitude);
}
}
總結
實現(xiàn)定位必須
1.初始化mapview
2.設置mapview的showuserlocation的屬性為yes
3.去實現(xiàn)didupdateuserlocation代理來實現(xiàn)當前位置顯示在可視范圍內
小知識的積累,定是大財富的源泉。虛心學習,每天進步一點點。
在手機上,在地圖左測下方有一個圈形的小圖標,點一下就是定位當前位置。在電腦上的話,應該是在右側下方也有一個類似的圓形圖標。
安卓開發(fā)之地圖定位無法跳轉到當前位置?
是你用地圖SDK開發(fā)的地圖無法跳過去嗎,SDK已經升級過了的,很多以前老的方法已經不行了的,最好看看地圖官方API
mapstatus mmapstatus = new mapstatus.builder() .target(你點擊位置的latlng) .zoom(18) .build(); //定義mapstatusupdate對象,以便描述地圖狀態(tài)將要發(fā)生的變化 mapstatusupdate mmapstatusupdate = mapstatusupdatefactory.newmapstatus(mmapstatus); //改變地圖狀態(tài) mbaidumap.animatemapstatus(mmapstatusupdate);
地圖無法定位?
如果使用地圖或導航,建議在設置的位置服務先勾選Google的位置服務、GPS衛(wèi)星、使用增強型GPS,然后打開網絡連接(最好用E網),這樣打開地圖或導航來定位快很多,定位后如果只是用導航,可以將網絡連接關了。
地圖使用的是機站定位,網絡設置有cmnet cmwap兩種,都可以。你那個一般是地圖軟件版本太低導致。你最新的安裝版地圖就能定位了。
google地圖無法定位?
裝的google地圖 暫時無法顯示您的位置。 其他的地圖就可以用,比如地圖那就不用啊~~~又不是離了他就不能活了 個人感覺還是圖吧導航準,
谷歌地圖無法定位?
可能是禁用了谷歌的位置服務。打開系統(tǒng)設置,里面有位置安全,允許谷歌服務手機你的位置信息。希望能夠幫助到你!
上一篇 :地圖上的字能去掉嗎?去掉地圖上的字