编写到这里的时候程序报错,啥问题
myOrientationListener.setOnOrientationListener(new OnOrientationListener()
{
@Override
public void onOrientationChanged(float x)
{
}
});
myOrientationListener.setOnOrientationListener(new OnOrientationListener()
{
@Override
public void onOrientationChanged(float x)
{
}
});
2017-02-12
定位到非洲的,除了加权限和so外,应该看看自己的手机gps好不好使,我这破机子刷了几次定位失败都在非洲海里,成功的都显示正确的位置。
2017-01-24
关于运行后立即闪退问题的解决办法
1.首先查看日志报的错
Caused by:java.lang.SecurityException:Requires READ_PHONE_STATE:Neither user 10211 nor current process has android.permission.READ_PHONE_STATE
2.去Manifest下添加权限
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
这样就能显示地图了,如果你网不好,估计等会,不然还是全屏白格子。
1.首先查看日志报的错
Caused by:java.lang.SecurityException:Requires READ_PHONE_STATE:Neither user 10211 nor current process has android.permission.READ_PHONE_STATE
2.去Manifest下添加权限
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
这样就能显示地图了,如果你网不好,估计等会,不然还是全屏白格子。
2016-12-31
对于那些一点“我的位置”就出现空白的情况,是由于把精度和维度搞错了,纬度是latitude,精度是lontitude。
在我的位置方法中centerToMylocation() {
LatLng latLng=new LatLng(mLatitude,mLontitude);//注意是纬度在前,精度在后
MapStatusUpdate msu=MapStatusUpdateFactory.newLatLng(latLng);
mBaiduMap.animateMapStatus(msu);
}
在我的位置方法中centerToMylocation() {
LatLng latLng=new LatLng(mLatitude,mLontitude);//注意是纬度在前,精度在后
MapStatusUpdate msu=MapStatusUpdateFactory.newLatLng(latLng);
mBaiduMap.animateMapStatus(msu);
}
2016-11-30