У меня есть направление движения и точки трека.
Строю маршрут и хочу показать направление движения. Пробую так (ниже код), но маркер поворачивается некорректно. Не знаете как это можно сделать?
public class RotableMarker extends Marker {
private Boolean isBearingAvailable = Boolean.FALSE;
private float bearing;
public RotableMarker(LatLong latLong, Bitmap bitmap, int horizontalOffset, int verticalOffset, float b) {
super(latLong, bitmap, horizontalOffset, verticalOffset);
isBearingAvailable = Boolean.TRUE;
bearing = b;
}
@Override
public synchronized void draw(BoundingBox boundingBox, byte zoomLevel, Canvas canvas, Point topLeftPoint) {
if (this.getLatLong() == null || this.getBitmap() == null || this.getBitmap().isDestroyed()) {
return;
}
long mapSize = MercatorProjection.getMapSize(zoomLevel, this.displayModel.getTileSize());
double pixelX = MercatorProjection.longitudeToPixelX(this.getLatLong().longitude, mapSize);
double pixelY = MercatorProjection.latitudeToPixelY(this.getLatLong().latitude, mapSize);
int halfBitmapWidth = this.getBitmap().getWidth() / 2;
int halfBitmapHeight = this.getBitmap().getHeight() / 2;
int left = (int) (pixelX - topLeftPoint.x - halfBitmapWidth + this.getHorizontalOffset());
int top = (int) (pixelY - topLeftPoint.y - halfBitmapHeight + this.getVerticalOffset());
int right = left + this.getBitmap().getWidth();
int bottom = top + this.getBitmap().getHeight();
Rectangle bitmapRectangle = new Rectangle(left, top, right, bottom);
Rectangle canvasRectangle = new Rectangle(0, 0, canvas.getWidth(), canvas.getHeight());
if(canvasRectangle.intersects(bitmapRectangle)) {
// Rotate the marker based on bearing for example (or whatever angle you want)
android.graphics.Canvas androidCanvas = AndroidGraphicFactory.getCanvas(canvas);
androidCanvas.save();
float px = (right + left) / 2f;
float py = (bottom + top) / 2f;
androidCanvas.rotate(bearing, px, py);
canvas.drawBitmap(this.getBitmap(), left, top);
androidCanvas.restore();
} else {
canvas.drawBitmap(this.getBitmap(), left, top);
}
}
}
Айфон мало держит заряд, разбираемся с проблемой вместе с AppLab
Перевод документов на английский язык: Важность и ключевые аспекты
Есть приложение с использованием Google MapsИ в нем есть список озер
Использую валидатор для проверки уникальности номераВ валидаторе автовайрю репозиторий для поиска по БД
Как замечательно что есть такой форум на котором можно задавать вопросыПотому что голову уже сломал
Помогите подключиться к базе данных удаленнопробовал настроить сервер, но не могу понять как подключиться к нему удаленно