- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我正在开发一个显示带有用户位置的 map 的 Android 应用程序,到目前为止,我能够在线和离线显示 map 。现在我想知道如何使用 MylocationOverlay
在 osmdroid 中绘制与标记一起出现的精度圆?
这是我的代码:
public class AhmedActivity extends Activity
{
/** Called when the activity is first created. */
private MapView mapView;
private MapController mapController;
private ScaleBarOverlay mScaleBarOverlay;
MyLocationOverlay myLocationOverlay = null;
private LocationManager locationManager;
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
// Initialize the location:
locationManager = (LocationManager) this.getSystemService(Context.LOCATION_SERVICE);
initializemap();
/* My location overlay */
/* Create a static Overlay showing a the current location and a compass */
myLocationOverlay = new MyLocationOverlay(this, mapView);
mapView.getOverlays().add(myLocationOverlay);
myLocationOverlay.runOnFirstFix( new Runnable() {
public void run() {
mapController.animateTo( myLocationOverlay
.getMyLocation());
}
});
//Add Scale Bar
mScaleBarOverlay = new ScaleBarOverlay(this);
ScaleBarOverlay myScaleBarOverlay = new ScaleBarOverlay(this);
mScaleBarOverlay.setLineWidth(50);
mapView.getOverlays().add(myScaleBarOverlay);
}
/** (re-)enable location and compass updates */
@Override
public void onResume() {
super.onResume();
myLocationOverlay.enableCompass();
myLocationOverlay.enableMyLocation();
//myLocationOverlay.followLocation(true);
//myLocationOverlay.setDrawAccuracyEnabled(true);
//myLocationOverlay.isDrawAccuracyEnabled();
}
/** disable compass and location updates */
@Override
public void onPause() {
super.onPause();
myLocationOverlay.disableMyLocation();
myLocationOverlay.disableCompass();
}
public void initializemap()
{
mapView = (MapView) this.findViewById(R.id.mapView);
mapView.setTileSource(TileSourceFactory.MAPNIK);
mapView.setBuiltInZoomControls(true);
mapView.setMultiTouchControls(true);
mapController = this.mapView.getController();
mapController.setZoom(12);
mapController.setCenter(new GeoPoint(15.610762,32.540345));
}
}
最佳答案
一个完整的示例,用于在您的位置绘制一个精度圆(这不包括您的位置的标记)。这是基于 OSMDroid 类 DirectedLocationOverlay用方向箭头显示您的位置(我不需要并已删除)。
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Point;
import org.osmdroid.util.GeoPoint;
import org.osmdroid.views.MapView;
import org.osmdroid.views.Projection;
import org.osmdroid.views.overlay.Overlay;
public class AccuracyOverlay extends Overlay {
private Paint paint = new Paint();
private Paint accuracyPaint = new Paint();
private GeoPoint location;
private final Point screenCoords = new Point();
private float accuracy = 0;
public AccuracyOverlay(GeoPoint location, float accuracyInMeters) {
super();
this.location = location;
this.accuracy = accuracyInMeters;
this.accuracyPaint.setStrokeWidth(2);
this.accuracyPaint.setColor(Color.BLUE);
this.accuracyPaint.setAntiAlias(true);
}
@Override
public void onDetach(MapView view){
paint = null;
accuracyPaint = null;
}
@Override
public void draw(final Canvas c, final MapView map, final boolean shadow) {
if (shadow) {
return;
}
if (location != null) {
final Projection pj = map.getProjection();
pj.toPixels(location, screenCoords);
if (accuracy > 0) { //Set this to a minimum pixel size to hide if accuracy high enough
final float accuracyRadius = pj.metersToEquatorPixels(accuracy);
/* Draw the inner shadow. */
accuracyPaint.setAntiAlias(false);
accuracyPaint.setAlpha(30);
accuracyPaint.setStyle(Paint.Style.FILL);
c.drawCircle(screenCoords.x, screenCoords.y, accuracyRadius, accuracyPaint);
/* Draw the edge. */
accuracyPaint.setAntiAlias(true);
accuracyPaint.setAlpha(150);
accuracyPaint.setStyle(Paint.Style.STROKE);
c.drawCircle(screenCoords.x, screenCoords.y, accuracyRadius, accuracyPaint);
}
}
}
}
然后在你的 Activity 中:
@Override
public void onLocationChanged(Location location) {
if (accuracyOverlay != null) {
map.getOverlays().remove(accuracyOverlay);
map.invalidate();
}
accuracyOverlay = new AccuracyOverlay(new GeoPoint(location), location.getAccuracy());
map.getOverlays().add(accuracyOverlay);
}
关于android - 使用 MyLocationOverlay 绘制精度圆,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11126709/
我在 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
我是一名优秀的程序员,十分优秀!