如果您打开Google地图应用,屏幕右上角会显示一个按钮,您可以按此按钮将地图置于当前位置的中心位置。然后按钮的图标会发生变化。如果再次按相同按钮,地图将根据指南针标题自动旋转。换句话说,地图变为以自我为中心(与分配中心的AKA北方相反)。
谷歌最近为Android推出了地图API V2,我当然比旧版更喜欢它。默认情况下,android maps V2将包含“center on location”按钮。但是,多次按下它不会启用自动旋转;它只是试图将地图重新定位在您的位置上。有人知道我如何使用地图API v2自动旋转地图,就像谷歌地图应用程序一样吗?我是否必须自己实现此功能,或者它是否在API中,我只是没有看到它?我感谢所有的帮助。
答案 0 :(得分:24)
好的,我认为应该在一年之后完成。如果您发现任何问题,请纠正我。
以下大多数代码都处理坐标系之间的差异。我正在使用旋转矢量传感器。来自文档:Y is tangential to the ground at the device's current location and points towards magnetic north.
另一方面,在谷歌地图中,似乎指向真北。 this page shows how the conversion is done
1)从当前GPS位置获取当前偏差
@Override
public void onLocationChanged(Location location) {
GeomagneticField field = new GeomagneticField(
(float)location.getLatitude(),
(float)location.getLongitude(),
(float)location.getAltitude(),
System.currentTimeMillis()
);
// getDeclination returns degrees
mDeclination = field.getDeclination();
}
2)从赤纬和磁北计算轴承
@Override
public void onSensorChanged(SensorEvent event) {
if(event.sensor.getType() == Sensor.TYPE_ROTATION_VECTOR) {
SensorManager.getRotationMatrixFromVector(
mRotationMatrix , event.values);
float[] orientation = new float[3];
SensorManager.getOrientation(mRotationMatrix, orientation);
float bearing = Math.toDegrees(orientation[0]) + mDeclination;
updateCamera(bearing);
}
}
3)更新地图
private void updateCamera(float bearing) {
CameraPosition oldPos = mMap.getCameraPosition();
CameraPosition pos = CameraPosition.builder(oldPos).bearing(bearing).build();
mMap.moveCamera(CameraUpdateFactory.newCameraPosition(pos));
}
答案 1 :(得分:6)
我已经成功实施了aleph_null解决方案,在这里我将添加一些未在接受的解决方案中提及的细节:
要使上述解决方案正常工作,您需要实现android.hardware.SensorEventListener接口。
您还需要在onResume和onPause方法中注册SensorEventListener,如下所示:
@Override
protected void onResume() {
super.onResume();
mSensorManager.registerListener(this,
mRotVectSensor,
SensorManager.SENSOR_STATUS_ACCURACY_LOW);
}
@Override
protected void onPause() {
// unregister listener
super.onPause();
mSensorManager.unregisterListener(this);
}
注意" @字节码":为了避免闪烁,请在采样周期内使用较低的值,例如SensorManager.SENSOR_STATUS_ACCURACY_LOW。
我也注意到传感器发送的数据比设备可以处理的时间多一些,因此地图相机开始以奇怪的方式移动!
为了控制onSensorChanged处理的数据量,我建议采用以下实现:
@Override
public void onSensorChanged(SensorEvent event) {
if(event.sensor.getType() == Sensor.TYPE_ROTATION_VECTOR) {
SensorManager.getRotationMatrixFromVector(
mRotationMatrix, event.values);
float[] orientation = new float[3];
SensorManager.getOrientation(mRotationMatrix, orientation);
if (Math.abs(Math.toDegrees(orientation[0]) - angle) > 0.8) {
float bearing = (float) Math.toDegrees(orientation[0]) + mDeclination;
updateCamera(bearing);
}
angle = Math.toDegrees(orientation[0]);
}
}
答案 2 :(得分:2)
可以通过使用Sensor Listener for Orientation注册您的应用程序,并在onSensorChanged内获取相对于true north的角度,并相应地更新相机。 角度可用于轴承。可以使用以下代码:
Instead of using Sensor.TYPE_ORIENTATION try using getOrinetation api. Sensor.TYPE_ORIENTATION
has been deprecated.
@Override
protected void onResume() {
// TODO Auto-generated method stub
super.onResume();
if (sensorManager != null)
sensorManager.registerListener(this,
sensorManager.getDefaultSensor(Sensor.TYPE_ORIENTATION),
SensorManager.SENSOR_DELAY_GAME);
}
public void onSensorChanged(SensorEvent event) {
float degree = Math.round(event.values[0]);
Log.d(TAG, "Degree ---------- " + degree);
updateCamera(degree);
}
private void updateCamera(float bearing) {
CameraPosition oldPos = googleMap.getCameraPosition();
CameraPosition pos = CameraPosition.builder(oldPos).bearing(bearing)
.build();
googleMap.moveCamera(CameraUpdateFactory.newCameraPosition(pos));
}
答案 3 :(得分:0)
对不起,您必须自己使用sensor manager和camera
来实现它如果这些功能可用于地图api V2,它们肯定会在GoogleMap或UiSettings
上答案 4 :(得分:0)
新的 Location 类已经自动为您提供方位,为什么不使用它呢?
示例代码:
private void updateCameraBearing(GoogleMap googleMap, Location myLoc) {
if ( googleMap == null) return;
CameraPosition camPos = CameraPosition
.builder(googleMap.getCameraPosition())
.bearing(myLoc.getBearing())
// if you want to stay centered - then add the line below
.target(new LatLng(myLoc.getLatitude(), myLoc.getLongitude()))
.build();
googleMap.animateCamera(CameraUpdateFactory.newCameraPosition(camPos));
}