如何为 MyLocationOverlay 中的“你在这里”点使用自定义位图?
Posted
技术标签:
【中文标题】如何为 MyLocationOverlay 中的“你在这里”点使用自定义位图?【英文标题】:How can I use a custom bitmap for the "you are here" point in a MyLocationOverlay? 【发布时间】:2010-10-19 17:19:12 【问题描述】:我翻阅了文档,但无法弄清楚这一点。有没有可能?
Please see this
【问题讨论】:
【参考方案1】:看起来这样做的正确机制是扩展 MyLocationOverlay 然后覆盖 drawMyLocation() 受保护的方法。
以下使用箭头表示“你”在哪里以及“你”指向的方向:
package com.example;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Canvas;
import android.graphics.Matrix;
import android.graphics.Point;
import android.location.Location;
import com.google.android.maps.GeoPoint;
import com.google.android.maps.MapView;
import com.google.android.maps.MyLocationOverlay;
public class MyCustomLocationOverlay extends MyLocationOverlay
private Context mContext;
private float mOrientation;
public MyCustomLocationOverlay(Context context, MapView mapView)
super(context, mapView);
mContext = context;
@Override
protected void drawMyLocation(Canvas canvas, MapView mapView, Location lastFix, GeoPoint myLocation, long when)
// translate the GeoPoint to screen pixels
Point screenPts = mapView.getProjection().toPixels(myLocation, null);
// create a rotated copy of the marker
Bitmap arrowBitmap = BitmapFactory.decodeResource( mContext.getResources(), R.drawable.arrow_green);
Matrix matrix = new Matrix();
matrix.postRotate(mOrientation);
Bitmap rotatedBmp = Bitmap.createBitmap(
arrowBitmap,
0, 0,
arrowBitmap.getWidth(),
arrowBitmap.getHeight(),
matrix,
true
);
// add the rotated marker to the canvas
canvas.drawBitmap(
rotatedBmp,
screenPts.x - (rotatedBmp.getWidth() / 2),
screenPts.y - (rotatedBmp.getHeight() / 2),
null
);
public void setOrientation(float newOrientation)
mOrientation = newOrientation;
【讨论】:
我可以更改位图,但旋转不起作用【参考方案2】:我对之前的代码进行了一些更改以使其正常工作,因为箭头指向错误的方向并朝相反的方向旋转。
我变了
matrix.postRotate(mOrientation);
为
matrix.postRotate(this.getRotation());
并添加到末尾:
mapView.postInvalidate();
当箭头改变时重绘箭头
【讨论】:
getRotation()
已在 MyLocationOverlay
中实现
好像改成getOrientation()以上是关于如何为 MyLocationOverlay 中的“你在这里”点使用自定义位图?的主要内容,如果未能解决你的问题,请参考以下文章
Android 谷歌地图 myLocationOverlay 消失了?
MyLocationOverlay dispatchTap() 不传播
MapView MyLocationOverlay 首次运行问题