- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
如何更改谷歌地图中 MyLocationOverlay 的默认蓝色动画标记?
最佳答案
谢谢@CommonsWare,你引导我朝着正确的方向前进。花了相当多的时间来摆弄这个。 http://code.google.com/android/add-ons/google-apis/reference/com/google/android/maps/MyLocationOverlay.html 上的 Javadoc只是错误的(或过时的)并且会扰乱你的大脑,它说:
drawMyLocation
Also, if the user's position moves near the edge of the screen, and we've been given a MapController in our constructor, we'll scroll to recenter the new reading.
这是完全错误的。首先,类中没有这样的构造函数。其次,drawMyLocation 仅在当前 Location 在视界内或屏幕移动时才会被调用。因此,如果您收到一个新位置并且此时没有看到标记,则不会重新绘制它。这在一般情况下是一件好事,但如果您想在方法中实现 mc.animateTo 以保持位置居中,这将是一件坏事。
第三,您不需要传递 MapController 来启用 currentLocation,因为您已经拥有 mapView 并从中获取 Controller ..
所以我最终编写了自己的类,一旦位置到达 mapView 的边界或离开屏幕,它就会以当前位置为中心:
public class CurrentLocationOverlay extends MyLocationOverlay {
// TODO: use dynamic calculation?
private final static int PADDING_ACTIVE_ZOOM = 50;
private MapController mc;
private Bitmap marker;
private Point currentPoint = new Point();
private boolean centerOnCurrentLocation = true;
private int height;
private int width;
/**
* By default this CurrentLocationOverlay will center on the current location, if the currentLocation is near the
* edge, or off the screen. To dynamically enable/disable this, use {@link #setCenterOnCurrentLocation(boolean)}.
*
* @param context
* @param mapView
*/
public CurrentLocationOverlay(Context context, MapView mapView) {
super(context, mapView);
this.mc = mapView.getController();
this.marker = BitmapFactory.decodeResource(context.getResources(), R.drawable.position);
}
@Override
protected void drawMyLocation(Canvas canvas, MapView mapView, Location lastFix, GeoPoint myLocation, long when) {
// TODO: find a better way to get height/width once the mapView is layed out correctly
if (this.height == 0) {
this.height = mapView.getHeight();
this.width = mapView.getWidth();
}
mapView.getProjection().toPixels(myLocation, currentPoint);
canvas.drawBitmap(marker, currentPoint.x, currentPoint.y - 40, null);
}
@Override
public synchronized void onLocationChanged(Location location) {
super.onLocationChanged(location);
// only move to new position if enabled and we are in an border-area
if (mc != null && centerOnCurrentLocation && inZoomActiveArea(currentPoint)) {
mc.animateTo(getMyLocation());
}
}
private boolean inZoomActiveArea(Point currentPoint) {
if ((currentPoint.x > PADDING_ACTIVE_ZOOM && currentPoint.x < width - PADDING_ACTIVE_ZOOM)
&& (currentPoint.y > PADDING_ACTIVE_ZOOM && currentPoint.y < height - PADDING_ACTIVE_ZOOM)) {
return false;
}
return true;
}
public void setCenterOnCurrentLocation(boolean centerOnCurrentLocation) {
this.centerOnCurrentLocation = centerOnCurrentLocation;
}
}
关于java - myLocationOverlay 更改标记,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4175432/
我在 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
我是一名优秀的程序员,十分优秀!