Skip to content

Commit 6301112

Browse files
committed
feat : 미션 사용자 line 변경
1 parent ea0f9b6 commit 6301112

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

presentation/src/main/java/com/stop/ui/mission/MissionTMap.kt

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package com.stop.ui.mission
22

33
import android.content.Context
4-
import android.graphics.Color
54
import androidx.core.content.ContextCompat
65
import com.skt.tmap.TMapPoint
76
import com.skt.tmap.overlay.TMapPolyLine
@@ -17,9 +16,7 @@ class MissionTMap(
1716
val points = arrayListOf(nowLocation, beforeLocation)
1817
val polyLine = TMapPolyLine(id, points).apply {
1918
lineColor = ContextCompat.getColor(context, color)
20-
lineWidth = LINE_WIDTH
21-
outLineColor = Color.WHITE
22-
outLineWidth = OUT_LINE_WIDTH
19+
outLineColor = ContextCompat.getColor(context, color)
2320
}
2421

2522
tMapView.addTMapPolyLine(polyLine)
@@ -42,9 +39,4 @@ class MissionTMap(
4239
}
4340
}
4441
}
45-
46-
companion object {
47-
private const val LINE_WIDTH = 7F
48-
private const val OUT_LINE_WIDTH = 10F
49-
}
5042
}

0 commit comments

Comments
 (0)