File tree Expand file tree Collapse file tree 1 file changed +1
-9
lines changed
presentation/src/main/java/com/stop/ui/mission Expand file tree Collapse file tree 1 file changed +1
-9
lines changed Original file line number Diff line number Diff line change 1
1
package com.stop.ui.mission
2
2
3
3
import android.content.Context
4
- import android.graphics.Color
5
4
import androidx.core.content.ContextCompat
6
5
import com.skt.tmap.TMapPoint
7
6
import com.skt.tmap.overlay.TMapPolyLine
@@ -17,9 +16,7 @@ class MissionTMap(
17
16
val points = arrayListOf (nowLocation, beforeLocation)
18
17
val polyLine = TMapPolyLine (id, points).apply {
19
18
lineColor = ContextCompat .getColor(context, color)
20
- lineWidth = LINE_WIDTH
21
- outLineColor = Color .WHITE
22
- outLineWidth = OUT_LINE_WIDTH
19
+ outLineColor = ContextCompat .getColor(context, color)
23
20
}
24
21
25
22
tMapView.addTMapPolyLine(polyLine)
@@ -42,9 +39,4 @@ class MissionTMap(
42
39
}
43
40
}
44
41
}
45
-
46
- companion object {
47
- private const val LINE_WIDTH = 7F
48
- private const val OUT_LINE_WIDTH = 10F
49
- }
50
42
}
You can’t perform that action at this time.
0 commit comments