Make cone bigger

This commit is contained in:
Victor Shcherb 2015-09-10 00:44:52 +02:00
parent e3fcc0a4a5
commit bef91395d4
2 changed files with 1 additions and 2 deletions

View file

@ -143,7 +143,6 @@ public class MapViewTrackingUtilities implements OsmAndLocationListener, IMapLoc
public boolean isShowViewAngle() {
return showViewAngle;
}

View file

@ -70,7 +70,7 @@ public class PointLocationLayer extends OsmandMapLayer {
private RectF getHeadingRect(int locationX, int locationY){
int rad = (int) (view.getDensity() * 35);
int rad = (int) (view.getDensity() * 55);
return new RectF(locationX - rad, locationY - rad, locationX + rad, locationY + rad);
}