- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我切换到 Android 版 map v2,并尝试移植以下功能:
使用 MyLocationOverlay,我可以显示设备的当前位置(蓝点)。当用户的位置发生变化并且点到达可见区域的边缘时, map 会实时显示动画,因此点会成为 View 的中心。
在 v2 中,我将 SupportMapFragment 与 getMap().setMyLocationEnabled(true) 一起使用。当前位置显示为一个蓝点(箭头),但当设备更改位置时, map View 不会移动,并且该点最终会离开 View 。
有什么想法吗?
最佳答案
您需要将 LocationSource 添加到您的 GoogleMap 并响应 onLocationChanged 事件。这是一个简单的类,它询问用户的位置,然后等到用户的位置可用,然后将 map 动画化为以他们的位置为中心。
public class MyLocationMapFragmentActivity extends FragmentActivity implements LocationListener, LocationSource
{
/**
* Note that this may be null if the Google Play services APK is not available.
*/
private GoogleMap mMap;
private OnLocationChangedListener mListener;
private LocationManager locationManager;
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.basic_map);
locationManager = (LocationManager) getSystemService(LOCATION_SERVICE);
if(locationManager != null)
{
boolean gpsIsEnabled = locationManager.isProviderEnabled(LocationManager.GPS_PROVIDER);
boolean networkIsEnabled = locationManager.isProviderEnabled(LocationManager.NETWORK_PROVIDER);
if(gpsIsEnabled)
{
locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 5000L, 10F, this);
}
else if(networkIsEnabled)
{
locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 5000L, 10F, this);
}
else
{
//Show an error dialog that GPS is disabled.
}
}
else
{
//Show a generic error dialog since LocationManager is null for some reason
}
setUpMapIfNeeded();
}
@Override
public void onPause()
{
if(locationManager != null)
{
locationManager.removeUpdates(this);
}
super.onPause();
}
@Override
public void onResume()
{
super.onResume();
setUpMapIfNeeded();
if(locationManager != null)
{
mMap.setMyLocationEnabled(true);
}
}
/**
* Sets up the map if it is possible to do so (i.e., the Google Play services APK is correctly
* installed) and the map has not already been instantiated.. This will ensure that we only ever
* call {@link #setUpMap()} once when {@link #mMap} is not null.
* <p>
* If it isn't installed {@link SupportMapFragment} (and
* {@link com.google.android.gms.maps.MapView
* MapView}) will show a prompt for the user to install/update the Google Play services APK on
* their device.
* <p>
* A user can return to this Activity after following the prompt and correctly
* installing/updating/enabling the Google Play services. Since the Activity may not have been
* completely destroyed during this process (it is likely that it would only be stopped or
* paused), {@link #onCreate(Bundle)} may not be called again so we should call this method in
* {@link #onResume()} to guarantee that it will be called.
*/
private void setUpMapIfNeeded() {
// Do a null check to confirm that we have not already instantiated the map.
if (mMap == null)
{
// Try to obtain the map from the SupportMapFragment.
mMap = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.basicMap)).getMap();
// Check if we were successful in obtaining the map.
if (mMap != null)
{
setUpMap();
}
//This is how you register the LocationSource
mMap.setLocationSource(this);
}
}
/**
* This is where we can add markers or lines, add listeners or move the camera. In this case, we
* just add a marker near Africa.
* <p>
* This should only be called once and when we are sure that {@link #mMap} is not null.
*/
private void setUpMap()
{
mMap.setMyLocationEnabled(true);
}
@Override
public void activate(OnLocationChangedListener listener)
{
mListener = listener;
}
@Override
public void deactivate()
{
mListener = null;
}
@Override
public void onLocationChanged(Location location)
{
if( mListener != null )
{
mListener.onLocationChanged( location );
//Move the camera to the user's location once it's available!
mMap.animateCamera(CameraUpdateFactory.newLatLng(new LatLng(location.getLatitude(), location.getLongitude())));
}
}
@Override
public void onProviderDisabled(String provider)
{
// TODO Auto-generated method stub
Toast.makeText(this, "provider disabled", Toast.LENGTH_SHORT).show();
}
@Override
public void onProviderEnabled(String provider)
{
// TODO Auto-generated method stub
Toast.makeText(this, "provider enabled", Toast.LENGTH_SHORT).show();
}
@Override
public void onStatusChanged(String provider, int status, Bundle extras)
{
// TODO Auto-generated method stub
Toast.makeText(this, "status changed", Toast.LENGTH_SHORT).show();
}
}
这应该跟随用户,并在 map 发生变化时保持 map 居中 - 如果您只想在用户“离开屏幕”时将 map 居中放在用户身上,那么您可以检查用户的位置在 map 的可见范围内
@Override
public void onLocationChanged(Location location)
{
if( mListener != null )
{
mListener.onLocationChanged( location );
LatLngBounds bounds = this.mMap.getProjection().getVisibleRegion().latLngBounds;
if(!bounds.contains(new LatLng(location.getLatitude(), location.getLongitude())))
{
//Move the camera to the user's location if they are off-screen!
mMap.animateCamera(CameraUpdateFactory.newLatLng(new LatLng(location.getLatitude(), location.getLongitude())));
}
}
}
以下是有关该主题的简短文章: Google Maps Android API V2 MyLocation LocationSource and event handling
更新
我编辑了获取用户位置的方式(请参阅 onCreate 中的 locationManager 代码)。我发现使用“getBestProvider”方法并不可靠,而且不能在多个设备上工作。我有几个用户提示他们的设备永远找不到他们的位置,无论我制定的标准多么宽松。看来手动选择 GPS 或网络是通用的。
关于android - 跟随用户的 map View - Android Maps API v2 的 MyLocationOverlay 类型功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13739990/
我在 MapView 上遇到异常行为,顺便说一句,我正在使用 RoboGuice,我不确定它是否会影响问题。 问题是,如果我在我的 map 上启用了 MyLocationListener,那么它上面的
在 android 上,我们有 MyLocationOverlay 类。当设备所有者在某些国家/地区时,此类是否有任何问题?我没有任何理由相信它不会起作用,只是不确定谷歌服务条款 - 也许在某些国家/
如何更改谷歌地图中 MyLocationOverlay 的默认蓝色动画标记? 最佳答案 谢谢@CommonsWare,你引导我朝着正确的方向前进。花了相当多的时间来摆弄这个。 http://code.
是否可以覆盖 MyLocationOverlay() 的 onDraw 方法并用其他东西替换标准的闪烁蓝色图标。我可以通过哪些方式实现这一点? 最佳答案 这里很好地回答了您的问题: myLocatio
private void initMyLocation() { myLocOverlay = new MyLocationOverlay(this, myMap); m
我是安卓新手。我了解了 MyLocationOverlay。它可以获取用户位置并在该位置上绘制一个蓝点。我想获取用户位置并将其发送到服务器。是否可以使用 MyLocationOverlay 获取用户位
在我的应用程序中,我希望看到当您在谷歌地图中四处走动时跟随您的小蓝点。下面是代码,但是我没有在任何地方看到蓝点,即使我将应用程序导出到我的手机也是如此! public class UCLAProjec
我在使用 osmdroid 映射 API 的 android 映射应用程序中工作,直到现在我能够显示 map (使用 MapView 类),但我想知道如何在 map 上显示我的位置,之后我读到了它我知
我可以轻松地使用 myLocationOverlay 获取我的位置,并且我想设置为我的位置中心,我尝试了 map Controller : MapController mc = myMap.getCo
MyLocationOverlay 已弃用。有其他选择吗? MapView mapView; MyLocationOverlay myLocationoverlay; @Override protec
我的 GoogleMap API for Android 组件 MyLocationOverlay 有问题。每次设备位置发生变化(并且用户位置超出可见部分或 map )时,我都想关闭 MyLocati
刚刚浪费了 3 个小时试图弄清楚为什么在我的 map Activity 暂停时 GPS 图标仍然显示在通知栏中。我已将其缩小到与我正在使用的 MyLocationOverlay 对象有关(我还有一个
我有一个 MapView,上面有一些叠加层和 MyLocationOverlay 的子类,因为我希望用户当前位置显示在其他标记之上。 我正在为标记处理 onTap 事件,以显示一个面板,其中包含所点击
我正在开发一个显示带有用户位置的 map 的 Android 应用程序,到目前为止,我能够在线和离线显示 map 。现在我想知道如何使用 MylocationOverlay 在 osmdroid 中绘
我正在开发一个应用程序。我在其中与 friend 分享我的位置(非常像谷歌纬度)。我有一个作为守护进程运行的服务:它应该显示接收到的位置,并每 x 秒发布一次当前用户位置。 现在,作为 Android
关于 MapView 中的 MyLocationOverlay.enableMyLocation 方法的一个小问题。 在原始的 Goggle map 应用程序中,位置显示为指南针,但是,如果我在 Ma
我制作了一个应用程序,它使用 MyLocationOverlay 类显示用户的当前位置。然而,当用户改变他的位置时,标记不会重新居中。如何实现“跟我来”功能? 我正在考虑让 LocationManag
我正在使用 MapView 在 map 上显示用户的当前位置。要在用户移动时更新位置,我必须做出选择: 我可以使用 MyLocationOverlay 绘制当前位置并扩展它以允许跟踪移动中的用户位置并
MyLocationOverLay和调用LocationManager.requestLocationUpdates函数有什么区别 换句话说,如果我要在用户移动时在 map 上显示用户位置,MyLoc
我翻遍了文档,还是没能弄明白。有可能吗? Please see this 最佳答案 看起来正确的机制是扩展 MyLocationOverlay,然后覆盖 drawMyLocation() protec
我是一名优秀的程序员,十分优秀!