backout GPXlayer and routeLayer

This commit is contained in:
sonora 2012-02-16 15:57:39 +01:00
parent 24b374913e
commit 67934000ed
2 changed files with 6 additions and 2 deletions

View file

@ -33,7 +33,9 @@ public class GPXLayer extends OsmandMapLayer {
private void initUI() { private void initUI() {
paint = new Paint(); paint = new Paint();
paint.setColor(getResources().getColor(R.color.gpx_track)); // colors.xml-Issue
//paint.setColor(getResources().getColor(R.color.gpx_track));
paint.setColor(Color.argb(180, 160, 10, 215));
paint.setStyle(Style.STROKE); paint.setStyle(Style.STROKE);
paint.setStrokeWidth(14); paint.setStrokeWidth(14);
paint.setAntiAlias(true); paint.setAntiAlias(true);

View file

@ -42,7 +42,9 @@ public class RouteLayer extends OsmandMapLayer {
boundsRect = new Rect(0, 0, view.getWidth(), view.getHeight()); boundsRect = new Rect(0, 0, view.getWidth(), view.getHeight());
tileRect = new RectF(); tileRect = new RectF();
paint = new Paint(); paint = new Paint();
paint.setColor(getResources().getColor(R.color.nav_track)); // colors.xml-Issue
//paint.setColor(getResources().getColor(R.color.nav_track));
paint.setColor(Color.BLUE);
paint.setStyle(Style.STROKE); paint.setStyle(Style.STROKE);
paint.setStrokeWidth(14); paint.setStrokeWidth(14);
paint.setAlpha(150); paint.setAlpha(150);