Skip to content

Commit

Permalink
* VECTOR_LINE_SCALE_COEF
Browse files Browse the repository at this point in the history
  • Loading branch information
nnngrach committed Apr 9, 2024
1 parent b578aa1 commit a5e7ec7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/Controllers/Map/Layers/OARouteLayer.mm
Original file line number Diff line number Diff line change
Expand Up @@ -462,10 +462,10 @@ - (CGFloat)getLineWidth
}
else
{
width = [self getParamFromAttr:@"strokeWidth"].floatValue * VECTOR_LINE_SCALE_COEF;
width = [self getParamFromAttr:@"strokeWidth"].floatValue;
}

return width;
return width * VECTOR_LINE_SCALE_COEF;
}

- (CGFloat)getWidthByKey:(NSString *)widthKey
Expand Down

0 comments on commit a5e7ec7

Please sign in to comment.