雷达上的比例坐标

时间:2015-05-12 16:06:31

标签: java android math gps location

我目前正在为Android开发雷达。 (遵循本教程:http://www.androidph.com/2009/02/app-10-beer-radar.html

我从服务器获取了当前位置周围5KM范围内的所有用户,然后我在我的自定义视图中绘制:

float xU = (float)(userLocation.getLongitude() + getWidth() / 2 - currentLong);
float yU = (float)(getHeight() / 2 - userLocation.getLatitude() + currentLat);
canvas.drawBitmap(bmpUser,xU,yU,radarPaint);

现在我的问题是,我需要缩放我在雷达上绘制的点/坐标,因为距离中心的距离仅为2-3像素的所有用户都将被绘制成距离中心仅2-3个像素。我怎么能做到这一点?

1 个答案:

答案 0 :(得分:0)

这是一种方法。您需要做的就是设置" scale"的值。变量到所需的值;

float scale = 3.0f; //set this to any number to change the drawing scale

float xU = (float)(getWidth() / 2 + (userLocation.getLongitude() - currentLong) * scale);
float yU = (float)(getHeight() / 2 - (userLocation.getLatitude() - currentLat) * scale);
canvas.drawBitmap(bmpUser,xU,yU,radarPaint);