We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69712ac commit 08f494dCopy full SHA for 08f494d
app/src/main/java/com/runnect/runnect/presentation/draw/DrawActivity.kt
@@ -310,7 +310,7 @@ class DrawActivity :
310
btnCreateCourse.setOnClickListener {
311
hideKeyboard(etCourseName)
312
bottomSheetDialog.dismiss()
313
- createMbr()
+ createMBR()
314
}
315
316
return bottomSheetDialog
@@ -664,7 +664,10 @@ class DrawActivity :
664
665
666
667
- private fun createMbr() {
+ /**
668
+ * MBR : 남서쪽과 북동쪽 꼭지점 두 개의 좌표로 만드는 직사각형 영역
669
+ */
670
+ private fun createMBR() {
671
val bounds = LatLngBounds.Builder()
672
.include(LatLng(departureLatLng.latitude, departureLatLng.longitude)).include(touchList)
673
.build()
0 commit comments