lmw
2023-05-12 f67802a41f9e01444d1115f34ecc6e1beb05fc3b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
package com.fuban.user.ui.trip
 
import android.Manifest
import android.animation.ObjectAnimator
import android.app.Activity
import android.content.Context
import android.content.Intent
import android.content.res.Resources
import android.graphics.Color
import android.net.Uri
import android.os.Bundle
import android.util.Log
import android.view.View
import android.widget.TextView
import androidx.core.os.bundleOf
import cn.sinata.amaplib.overlay.DrivingRouteOverlay
import cn.sinata.xldutils.callPhone
import cn.sinata.xldutils.fragment.BaseFragment
import cn.sinata.xldutils.gone
import cn.sinata.xldutils.ioScheduler
import cn.sinata.xldutils.rxutils.ResultException
import cn.sinata.xldutils.utils.*
import cn.sinata.xldutils.visible
import com.amap.api.location.AMapLocationClient
import com.amap.api.location.AMapLocationClientOption
import com.amap.api.maps.AMap
import com.amap.api.maps.CameraUpdateFactory
import com.amap.api.maps.TextureMapView
import com.amap.api.maps.model.*
import com.amap.api.services.core.LatLonPoint
import com.amap.api.services.poisearch.PoiResult
import com.amap.api.services.poisearch.PoiSearch
import com.amap.api.services.route.*
import com.autonavi.amap.mapcore.Inner_3dMap_location
import com.flyco.tablayout.listener.CustomTabEntity
import com.flyco.tablayout.listener.OnTabSelectListener
import com.google.android.material.bottomsheet.BottomSheetBehavior
import com.fuban.user.FBApplication
import com.fuban.user.R
import com.fuban.user.network.HttpManager
import com.fuban.user.network.requestByF
import com.fuban.user.ui.H5Activity
import com.fuban.user.ui.MainActivity
import com.fuban.user.dialog.ChooseReserveTimeDialog
import com.fuban.user.dialog.SetRedPackageDialog
import com.fuban.user.dialog.TipDialog
import com.fuban.user.ui.ChooseCityActivity
import com.fuban.user.ui.mine.EditEmergencyActivity
import com.fuban.user.ui.mine.SetEmergencyActivity
import com.fuban.user.utils.Const
import com.fuban.user.utils.ScreenUtil
import com.fuban.user.views.textbanner.TextBannerView
import com.tbruyelle.rxpermissions2.RxPermissions
import io.reactivex.Flowable
import io.reactivex.subscribers.DisposableSubscriber
import kotlinx.android.synthetic.main.fragment_map_trip.*
import kotlinx.android.synthetic.main.item_car_price.view.*
import kotlinx.android.synthetic.main.item_img_ads.view.*
import kotlinx.android.synthetic.main.layout_confirm_special.*
import kotlinx.android.synthetic.main.layout_confirm_taxi.*
import org.jetbrains.anko.backgroundResource
import org.jetbrains.anko.imageResource
import org.jetbrains.anko.sdk27.coroutines.onClick
import org.jetbrains.anko.startActivityForResult
import org.jetbrains.anko.support.v4.*
 
class MapTripFragment : BaseFragment(), RouteSearch.OnRouteSearchListener {
    override fun contentViewId() = R.layout.fragment_map_trip
 
    private val mMapView by lazy {
        find<TextureMapView>(R.id.mMapView)
    }
    private val aMap by lazy {
        mMapView.map
    }
    private val behavior by lazy {
        BottomSheetBehavior.from(bottom)
    }
    private val mainActivity by lazy {
        activity as MainActivity
    }
    var type = Const.OrderType.TYPE_TAXI //默认出租车
    private val titles = arrayOf("现在", "预约", "代叫")
    private var startByChoose = false //true 通过选择出发地移动地图,false 通过手势拖动地图
    private var startByLocal = false //true 通过复位按钮移动地图,false 通过手势拖动地图
 
    //出发经纬度
    private var startLon = 0.0
    private var startLat = 0.0
    private var startName = ""
 
    //到达经纬度
    private var endLon = 0.0
    private var endLat = 0.0
    private var endName = ""
    private var orderType = 1 //订单类型(1=普通,2=预约)
    private var substitute = 0 //是否是代下单(0:否,1:是)
    private var tipMoney = 0 //小费金额
    private var time = "选择时间" //预约时间
    private var timeParam = "现在" //预约时间请求参数
    private var name = "选乘车人" //乘车人
    private var phone: String? = null //乘车人电话
 
    private var carTypeId = 0 //专车车型id
    private var carTypeIndex = -1 //选中的位置
 
 
    override fun onFirstVisibleToUser() {
        mMapView.onCreate(savedInstanceState)
        getNotice()
        getBottomAds()
        initMap()
        getRxPermission {
            initLocation()
        }
        initTab()
        initTab2()
        initClick()
        behavior.addBottomSheetCallback(object : BottomSheetBehavior.BottomSheetCallback() {
            override fun onSlide(bottomSheet: View, slideOffset: Float) {
                Log.e(Const.Tag, "slideOffset:$slideOffset")
                if (slideOffset > 0.71f && slideOffset < 0.8) {
                    val fl = 0.8f - slideOffset
                    mainActivity.updateTipAlpha(fl / 0.09f)
                } else if (slideOffset <= 0.71)
                    mainActivity.updateTipAlpha(1f)
                else
                    mainActivity.updateTipAlpha(0f)
                if (slideOffset > 0.03) {
                    ll_call.gone()
                } else
                    ll_call.visible()
                if (slideOffset < 0.9)
                    mainActivity.updateTitleVisibility(false, false)
                else if (slideOffset > 0.92) {
                    mainActivity.updateTitleVisibility(true, false)
                    iv_back.imageResource = R.mipmap.close_bottom
                }
            }
 
            override fun onStateChanged(bottomSheet: View, newState: Int) {
                Log.e(Const.Tag, "newState:$newState")
                if (newState == BottomSheetBehavior.STATE_EXPANDED) {
//                    cl_option.gone()
//                    bottom.smoothScrollTo(0,ll_ads.top)
                } else if (newState == BottomSheetBehavior.STATE_COLLAPSED) {
//                    cl_option.visible()
                }
            }
        })
 
        //用于处理当虚拟导航栏存在时,BottomSheetBehavior窥视高度不对的问题
        val virtualBarHeigh = ScreenUtil().getVirtualBarHeigh(activity)
        Log.e("虚拟导航栏高度", "$virtualBarHeigh")
        val navigationBarHeight = getNavigationBarHeight()
        Log.e("导航栏高度", "$navigationBarHeight")
        if (virtualBarHeigh >= getNavigationBarHeight()) //如果虚拟导航栏高度大于或等于导航栏高度,说明虚拟导航栏在显示,需要减去导航栏的高度
            behavior.setPeekHeight(dip(240) - getNavigationBarHeight(), true)
        else
            behavior.setPeekHeight(dip(240), true)
 
    }
 
    private fun initLocation() {
        initLocationOne(activity!!)
    }
 
    fun initLocationOne(context: Context) { //初始化定位
        var mlocationClient = AMapLocationClient(context)
        var mLocationOption = AMapLocationClientOption()
        mlocationClient.setLocationListener{p0 ->
            p0?.let {
                if (!p0.city.isNullOrEmpty() && p0.city != FBApplication.chooseCityName && !isChangeCity) {
                    isChangeCity = true
                    showChangeCity()
                    mlocationClient.stopLocation()
                }
            }
        }
        mLocationOption.isNeedAddress = true
        mLocationOption.isOnceLocation = false
        mLocationOption.locationMode = AMapLocationClientOption.AMapLocationMode.Hight_Accuracy
        mlocationClient.setLocationOption(mLocationOption)
        mlocationClient.startLocation() //启动定位
    }
 
 
    private fun getNavigationBarHeight(): Int {
        val resources: Resources = activity!!.getResources()
        val resourceId: Int = resources.getIdentifier("navigation_bar_height", "dimen", "android")
        val height: Int = resources.getDimensionPixelSize(resourceId)
        return height
    }
 
    private fun initClick() {
        //点击归位
        iv_location.setOnClickListener {
            startByLocal = true
            aMap.animateCamera(
                CameraUpdateFactory.newLatLngZoom(
                    LatLng(
                        FBApplication.lat,
                        FBApplication.lon
                    ), 15f
                )
            )
        }
        iv_location2.setOnClickListener {
            drivingRouteOverlay!!.zoomToSpan(50, 400, 50, 1000)
        }
        tv_110.setOnClickListener {
            callPhone(mainActivity.phoneEmergency)
        }
        tv_service.setOnClickListener {
            callPhone(FBApplication.phoneService)
        }
        tv_start.setOnClickListener {
            startActivityForResult<ChoosePositionActivity>(1)
            if (behavior.state == BottomSheetBehavior.STATE_EXPANDED)
                behavior.state = BottomSheetBehavior.STATE_COLLAPSED
        }
        tv_end.setOnClickListener {
            startActivityForResult<ChoosePositionActivity>(2, "isStart" to false)
            if (behavior.state == BottomSheetBehavior.STATE_EXPANDED)
                behavior.state = BottomSheetBehavior.STATE_COLLAPSED
        }
        tv_time.setOnClickListener {
            showTimeDialog()
        }
        tv_option.setOnClickListener {
            if (tab_type.currentTab == 1) {
                showTimeDialog()
            } else {//代叫
                startActivityForResult<OrderOtherActivity>(3)
            }
        }
        tv_time_special.onClick {
            showTimeDialog()
        }
 
        tv_passenger.setOnClickListener {
            startActivityForResult<OrderOtherActivity>(3)
        }
 
        tv_passenger_special.onClick {
            startActivityForResult<OrderOtherActivity>(3)
        }
 
        tv_retry.onClick {
            getCarType()
        }
 
        tv_tips.setOnClickListener {
            val setRedPackageDialog = SetRedPackageDialog()
            setRedPackageDialog.setCallback(object : SetRedPackageDialog.Callback {
                override fun onOk(int: Int) {
                    tipMoney = int
                    tv_tips.text = String.format("小费%d元", tipMoney)
                }
            })
            setRedPackageDialog.show(fragmentManager!!, "red")
        }
 
        iv_back.setOnClickListener {
            if (behavior.state == BottomSheetBehavior.STATE_EXPANDED) {
                behavior.state = BottomSheetBehavior.STATE_COLLAPSED
                bottom.smoothScrollTo(0, 0)
            } else {
                back()
            }
        }
 
        tv_set_emergency.onClick {
            setEmergency()
        }
 
        tv_emergency_special.onClick {
            setEmergency()
        }
 
        tv_action_taxi.setOnClickListener {
            makeOrder()
        }
 
        tv_action_special.setOnClickListener {
            if (carTypeIndex == -1)
                myToast("请选择车型")
            else
                makeOrder()
        }
    }
 
    private fun makeOrder() {
        if (mainActivity.checkLogin() && mainActivity.checkPhone()) {
            if (FBApplication.emergency.isEmpty()) {
                myToast("请设置紧急联系人")
                startActivity<SetEmergencyActivity>(
                    "name" to "no",
                    "phone" to "",
                    "myPhone" to mainActivity.userInfo!!.phone
                )
                return
            }
            orderType = if (type == Const.OrderType.TYPE_TAXI) { //出租车预约判断多一个tab选择为1的条件
                if (tab_confirm.currentTab == 1 && (time != "选择时间" && time != "现在")) 2 else 1
            } else {//专车预约只需要判断是否选择时间
                if ((time != "选择时间" && time != "现在")) 2 else 1
            }
            substitute = if (type == Const.OrderType.TYPE_TAXI) { //出租车代叫判断tab选择为2
                if (tab_confirm.currentTab == 2) 1 else 0
            } else {//专车代叫只判断是否选择姓名
                if (name != "选乘车人") 1 else 0
            }
            tv_action_taxi.isClickable = false
            tv_action_special.isClickable = false
            showDialog()
            HttpManager.addTaxiOrder(
                endName,
                endLat,
                endLon,
                1,
                orderType,
                FBApplication.lat,
                FBApplication.lon,
                startName,
                startLat,
                startLon,
                substitute,
                tipMoney,
                if (orderType == 1) System.currentTimeMillis().toTime("yyyy-MM-dd HH:mm")
                else timeParam,
                null,
                if (substitute == 0) null else name,
                if (substitute == 0) null else phone,
                carTypeId, 1, type
            ).requestByF(this, success = { _, data ->
                data?.run {
                    tv_action_taxi.isClickable = true
                    tv_action_special.isClickable = true
                    startActivity<TripActivity>("type" to type, "id" to optInt("id"))
                    back()
                }
            }, error = { _, _ ->
                tv_action_taxi.isClickable = true
                tv_action_special.isClickable = true
            })
        }
    }
 
    private fun setEmergency() {
        if (mainActivity.checkLogin()) {
            if (mainActivity.userInfo?.emergencyContactNumber.isNullOrEmpty())
                startActivity<SetEmergencyActivity>(
                    "name" to "",
                    "phone" to "", "myPhone" to mainActivity.userInfo?.phone
                )
            else
                startActivity<EditEmergencyActivity>(
                    "name" to mainActivity.userInfo?.emergencyContact,
                    "phone" to mainActivity.userInfo?.emergencyContactNumber,
                    "myPhone" to mainActivity.userInfo?.phone
                )
        }
    }
 
    private fun showTimeDialog() {
        val chooseReserveTimeDialog = ChooseReserveTimeDialog()
        chooseReserveTimeDialog.setCallback(object : ChooseReserveTimeDialog.Callback {
            override fun onOk(s: String, formatS: String) {
                tv_time.text = s
                tv_option.text = s
                tv_time_special.text = s
                time = s
                timeParam = formatS
            }
        })
        chooseReserveTimeDialog.show(fragmentManager!!, "time")
    }
 
    fun getRxPermission(function: () -> Unit) {
        if (!RxPermissions(requireActivity()).isGranted(Manifest.permission.ACCESS_FINE_LOCATION) //没有权限且明确拒绝就不再申请权限
            && SPUtils.instance().getBoolean(Const.User.IS_REFUSE_PERMISSION_LOCATION)){
            function()
//            myToast("没有定位权限")
        }else{
            val disposable =
                RxPermissions(activity!!).request(Manifest.permission.ACCESS_FINE_LOCATION)
                    .subscribe {
                        if (it) {
                            function()
                        } else {
                            SPUtils.instance().put(Const.User.IS_REFUSE_PERMISSION_LOCATION,true).apply()
                            function()
                        }
                    }
            onBindHelper(disposable)
        }
    }
 
    private var locCount = 0L //定位次数
    private var isChangeCity = false
    private fun initMap() {
        val myLocationStyle = MyLocationStyle()
        myLocationStyle.strokeColor(resources.getColor(R.color.colorBrown))
        myLocationStyle.radiusFillColor(resources.getColor(R.color.colorTransBrown))
        myLocationStyle.interval(10000)
        myLocationStyle.anchor(0.5f, 0.5f)
        myLocationStyle.myLocationType(MyLocationStyle.LOCATION_TYPE_LOCATION_ROTATE_NO_CENTER)//
        myLocationStyle.myLocationIcon(BitmapDescriptorFactory.fromResource(R.mipmap.icon_coordinate))
        aMap.myLocationStyle = myLocationStyle//设置定位蓝点的Style
        aMap.uiSettings.isMyLocationButtonEnabled = false//设置默认定位按钮是否显示,非必需设置。
        aMap.uiSettings.setZoomInByScreenCenter(true)
        aMap.uiSettings.isZoomControlsEnabled = false
        aMap.uiSettings.isRotateGesturesEnabled = false
        aMap.uiSettings.isTiltGesturesEnabled = false
        aMap.isMyLocationEnabled = true
        aMap.setOnMyLocationChangeListener {
            it as Inner_3dMap_location
            Log.e(Const.Tag, "出租车:lat:" + it.latitude + ",lon:" + it.longitude)
            FBApplication.lat = it.latitude
            FBApplication.lon = it.longitude
            FBApplication.address = it.address
            FBApplication.cityCode = it.extras.getString("adcode") ?: ""
            if (locCount < 1) {
                Log.e(Const.Tag, "首页:lat:" + mainActivity.lat + ",lon:" + mainActivity.lon)
                if (mainActivity.lat != 0.0)
                    aMap.animateCamera(
                        CameraUpdateFactory.newLatLngZoom(
                            LatLng(
                                mainActivity.lat,
                                mainActivity.lon
                            ), 15f
                        )
                    )
                else
                    aMap.animateCamera(
                        CameraUpdateFactory.newLatLngZoom(
                            LatLng(
                                it.latitude,
                                it.longitude
                            ), 15f
                        )
                    )
            }
            locCount++
        }
        aMap.setOnCameraChangeListener(object : AMap.OnCameraChangeListener {
            override fun onCameraChangeFinish(p0: CameraPosition?) {
                if (!startByChoose && iv_center.visibility == View.VISIBLE) {
                    startLat = p0?.target?.latitude ?: 0.0
                    startLon = p0?.target?.longitude ?: 0.0
                    getPoi(startLat, startLon)
                }
                startByChoose = false
                startByLocal = false
                val objectAnimator =
                    ObjectAnimator.ofFloat(iv_center, "translationY", 0f, -30f, 0f).setDuration(600)
                val objectAnimator1 =
                    ObjectAnimator.ofFloat(tv_msg, "translationY", 0f, -30f, 0f).setDuration(600)
                objectAnimator.start()
                objectAnimator1.start()
                if (endLat == 0.0)
                    getDriverNum()
                tv_msg.text = "在这里上车"
            }
 
            override fun onCameraChange(p0: CameraPosition?) {
                if (startByLocal)
                    tv_msg.text = "正在获取定位"
                else if (!startByChoose)
                    tv_msg.text = "拖到路边,接驾更快"
            }
        })
    }
 
    private fun showChangeCity() {
        if ((requireActivity() as MainActivity).isOpen){
            val tipDialog = TipDialog()
            tipDialog.arguments = bundleOf("msg" to "当前城市与定位城市不符,是否切换?")
            tipDialog.setCallback(object : TipDialog.OnClickCallback {
                override fun onOk() {
                    activity!!.startActivityForResult<ChooseCityActivity>(501)
                }
 
                override fun onCancel() {
 
                }
            })
            tipDialog.show(childFragmentManager, "clear")
        }
    }
 
    private fun initTab() {
        val list = arrayListOf<CustomTabEntity>()
        list.addAll(titles.map {
            object : CustomTabEntity {
                override fun getTabUnselectedIcon() = 0
 
                override fun getTabSelectedIcon() = 0
 
                override fun getTabTitle() = it
            }
        })
        tab_type.setTabData(list)
        tab_type.currentTab = 0
        tab_type.setOnTabSelectListener(object : OnTabSelectListener {
            override fun onTabSelect(position: Int) {
                tv_option.visibility = if (position == 0) View.GONE else View.VISIBLE
                tv_option.text = if (position == 1) time else name
                tv_time_special.text = if (position == 1) "选择时间" else "现在"
            }
 
            override fun onTabReselect(position: Int) {
            }
        })
    }
 
    private fun initTab2() {
        val list = arrayListOf<CustomTabEntity>()
        list.addAll(titles.map {
            object : CustomTabEntity {
                override fun getTabUnselectedIcon() = 0
 
                override fun getTabSelectedIcon() = 0
 
                override fun getTabTitle() = it
            }
        })
        tab_confirm.setTabData(list)
        tab_confirm.currentTab = 0
        tab_confirm.setOnTabSelectListener(object : OnTabSelectListener {
            override fun onTabSelect(position: Int) {
                if (position == 1) {
                    tv_time.visible()
                    vertical_1.visible()
                } else {
                    tv_time.gone()
                    vertical_1.gone()
                }
            }
 
            override fun onTabReselect(position: Int) {
            }
        })
    }
 
    fun changeType(type: Int) {
        this.type = type
        getDriverNum()
        checkBack()
    }
 
    fun getDriverNum() {
        if (activity == null)
            return
        if (!mainActivity?.isTripping && startLat != 0.0)
            HttpManager.getDriverNum(startLat, startLon, type).requestByF(this) { _, data ->
                mainActivity.updateTipText("当前附近有${data?.optInt("number") ?: 0}辆车可用")
            }
    }
 
 
    private fun getNotice() {
        HttpManager.queryNotices(1).requestByF(this) { _, data ->
            data?.let {
                val list = arrayListOf<String>()
                list.addAll(it.map {
                    it.content
                })
                (textBanner as TextBannerView<String>).setDatas(list)
                (textBanner2 as TextBannerView<String>).setDatas(list)
            }
        }
    }
 
    /**
     * 底部广告
     */
    private fun getBottomAds() {
        if (mainActivity.isOpen)
            HttpManager.getAds(2, FBApplication.chooseCityCode).requestByF(this) { _, data ->
                data?.let {
                    it.forEach {
                        val view = layoutInflater.inflate(R.layout.item_img_ads, null)
                        view.iv_img.setImageURI(it.imgUrl)
                        view.iv_img.setOnClickListener { _ ->
                            if (it.isJump == 1) { //要跳转
                                if (it.jumpType == "2")
                                    startActivity<H5Activity>(
                                        "title" to it.name,
                                        "url" to it.content
                                    )
                                else {
                                    val intent = Intent()
                                    intent.action = "android.intent.action.VIEW"
                                    intent.data = Uri.parse(it.jumpUrl)
                                    startActivity(intent)
                                }
                            }
                        }
                        ll_ads.addView(view)
                    }
                }
            }
    }
 
 
    /**
     *查询专车类型和价格
     */
    private fun getCarType() {
        showDialog()
        HttpManager.queryServerCarModel("$startLon,$startLat", "$endLon,$endLat", type)
            .requestByF(this, success = { _, data ->
                data?.let { list ->
                    if (list.isEmpty()) {
                        tv_empty.visible()
                        tv_action_special.isEnabled = false
                    } else {
                        tv_action_special.isEnabled = true
                        tv_error.gone()
                        tv_retry.gone()
                        list.forEachIndexed { index, it ->
                            val view =
                                layoutInflater.inflate(R.layout.item_car_price, ll_type, false)
                            view.tv_name.text = it.name
                            view.tv_price.text = String.format("预估%.2f", it.amount)
                            view.iv_car.setImageURI(it.img)
                            //                    if (index == 0){   //任洲洋:此处不做默认选择
                            //                        carTypeId = it.id
                            //                        view.tv_name.isChecked = true
                            //                        view.tv_price.isChecked = true
                            //                        view.ll_car.elevation = dip(3).toFloat()
                            //                        view.ll_car.backgroundResource = R.drawable.bg_white_6dp
                            //                    }
                            view.onClick { _ ->
                                if (index != carTypeIndex) {
                                    view.tv_name.isChecked = true
                                    view.tv_price.isChecked = true
                                    view.ll_car.elevation = dip(3).toFloat()
                                    view.ll_car.backgroundResource = R.drawable.bg_white_6dp
                                    if (carTypeIndex != -1)
                                        ll_type.getChildAt(carTypeIndex).apply {
                                            tv_name.isChecked = false
                                            tv_price.isChecked = false
                                            ll_car.elevation = 0f
                                            ll_car.backgroundResource = 0
                                        }
                                    carTypeIndex = index
                                    carTypeId = it.id
                                }
                            }
                            ll_type.addView(view)
                        }
                    }
                }
            }) { _, _ ->
                tv_error.visible()
                tv_retry.visible()
                tv_action_special.isEnabled = false
            }
    }
 
    /**
     *   获取poi信息
     */
    private var poiSearchDisposable: DisposableSubscriber<PoiResult>? = null
 
    fun getPoi(lat: Double?, lng: Double?) {
        if (lat == null || lng == null) {
            return
        }
        //如果上一次还没处理完,取消订阅
        if (poiSearchDisposable != null && !poiSearchDisposable!!.isDisposed) {
            poiSearchDisposable?.dispose()
        }
        poiSearchDisposable = object : DisposableSubscriber<PoiResult>() {
            override fun onComplete() {
 
            }
 
            override fun onNext(t: PoiResult?) {
                val address = if (t != null) {
                    t.pois.sortBy { it.distance }
                    if (t.pois.isNotEmpty()) {
                        t.pois[0].title
                    } else {
                        null
                    }
                } else {
                    null
                }
                runOnUiThread {
                    startName = address ?: ""
                    tv_start?.text = address
                    mainActivity.startName = startName
                    mainActivity.startLat = startLat
                    mainActivity.startLon = startLon
                }
            }
 
            override fun onError(t: Throwable?) {
                runOnUiThread {
                    startName = ""
                    tv_start.text = "点击选择起点"
                }
            }
        }
        val query = PoiSearch.Query("", "190000", "")
        val poiSearch = PoiSearch(context, query)
        poiSearch.bound = PoiSearch.SearchBound(LatLonPoint(lat, lng), 1000)
        Flowable.just(poiSearch).ioScheduler().flatMap {
            try {
                val result = poiSearch.searchPOI()
                if (result == null) {
                    Flowable.error(ResultException(""))
                } else
                    Flowable.just(result)
            } catch (e: Exception) {
                e.printStackTrace()
                Flowable.error<PoiResult>(e)
            }
        }.subscribe(poiSearchDisposable)
    }
 
    private fun searchRoute(start: LatLonPoint, end: LatLonPoint) {
        val fromAndTo = RouteSearch.FromAndTo(start, end)
        val driveRouteQuery =
            RouteSearch.DriveRouteQuery(fromAndTo, RouteSearch.DrivingDefault, null, null, "")
        val routeSearch = RouteSearch(mainActivity)
        routeSearch.calculateDriveRouteAsyn(driveRouteQuery)
        routeSearch.setRouteSearchListener(this)
    }
 
    /**确认订单*/
    private fun showConfirmOrder() {
        if (endLat != 0.0 && endLon != 0.0) {
            iv_center.gone()
            tv_msg.gone()
            searchRoute(LatLonPoint(startLat, startLon), LatLonPoint(endLat, endLon))
            bottom.gone()
            cl_bottom.visible()
            iv_location2.visible()
            textBanner2.visible()
            iv_banner2.visible()
            tab_confirm.currentTab = tab_type.currentTab
            tv_time.visibility = if (tab_confirm.currentTab == 1) View.VISIBLE else View.GONE
            vertical_1.visibility = tv_time.visibility
            mainActivity.updateTitleVisibility(false, true)
            iv_back.imageResource = R.mipmap.back
            setMarker(LatLng(startLat, startLon))
            when (type) { //根据订单类型渲染
                Const.OrderType.TYPE_SPECIAL -> {
//                    mainActivity.updateTipAlpha(0f)
                    cl_special.visible()
                    getCarType()
                }
                Const.OrderType.TYPE_TAXI -> {
                    cl_taxi.visible()
                }
            }
        }
    }
 
    /**检查返回状态*/
    fun checkBack(): Boolean {
        if (!isAdded)
            return false
        return if (cl_bottom.visibility == View.VISIBLE) { //先返回到上一步
            back()
            false
        } else
            true
    }
 
    /**返回上一步*/
    fun back() {
        cl_bottom.gone()
        bottom.visible()
        iv_location2.gone()
        iv_banner2.gone()
        textBanner2.gone()
        iv_center.visible()
        mainActivity.updateTitleVisibility(false, false)
        mainActivity.updateTipAlpha(1f)
        drivingRouteOverlay?.removeFromMap()
        startMarker?.remove()
        endMarker?.remove()
        endLat = 0.0
        endLon = 0.0
        time = "选择时间"
        phone = ""
        name = "选乘车人"
        startByLocal = true
        aMap.animateCamera(
            CameraUpdateFactory.newLatLngZoom(
                LatLng(
                    FBApplication.lat,
                    FBApplication.lon
                ), 15f
            )
        )
        mainActivity.updateTipAlpha(1f)
 
        //出租车重置
        cl_taxi.gone()
        tipMoney = 0
        tv_time.text = "预约时间"
        tv_passenger.text = "更换乘车人"
        tv_tips.text = "小费"
        tab_type.currentTab = 0
 
        //专车重置
        cl_special.gone()
        tv_time_special.text = "现在"
        tv_passenger_special.text = "选乘车人"
        carTypeIndex = -1
        carTypeId = 0
        ll_type.removeAllViews()
        tv_option.gone()
        tv_msg.visible()
        tv_empty.gone()
        tv_error.gone()
        tv_retry.gone()
        tv_action_special.isEnabled = true
    }
 
    override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {
        super.onActivityResult(requestCode, resultCode, data)
        if (resultCode == Activity.RESULT_OK && data != null) {
            when (requestCode) {
                1 -> {
                    startLat = data.getDoubleExtra("lat", 0.0)
                    startLon = data.getDoubleExtra("lon", 0.0)
                    startByChoose = true
                    aMap.animateCamera(CameraUpdateFactory.newLatLng(LatLng(startLat, startLon)))
                    startName = data.getStringExtra("name") ?: ""
                    tv_start.text = startName
                    showConfirmOrder()
                }
                2 -> {
                    endLat = data.getDoubleExtra("lat", 0.0)
                    endLon = data.getDoubleExtra("lon", 0.0)
                    endName = data.getStringExtra("name") ?: ""
                    showConfirmOrder()
                }
                3 -> {
                    name = data.getStringExtra("name") ?: ""
                    phone = data.getStringExtra("phone") ?: ""
                    tv_option.text = name
                    tv_passenger.text = name
                    tv_passenger_special.text = name
                }
            }
        }
    }
 
    private var startMarker: Marker? = null
    private var endMarker: Marker? = null
    private fun setMarker(latLon: LatLng, content: String = "") {
        val options = MarkerOptions()
        options.position(latLon)
        if (content.isNotEmpty()) {
            val view = layoutInflater.inflate(R.layout.marker_with_text, null, false)
            val contentView = view.findViewById(R.id.tv_content) as TextView
            contentView.text = SpanBuilder(content).color(
                mainActivity,
                4,
                content.length - 2,
                R.color.colorPrimary
            ).build()
            options.icon(BitmapDescriptorFactory.fromView(view))
            startMarker = aMap.addMarker(options)
        } else {
            options.icon(BitmapDescriptorFactory.fromResource(R.mipmap.starting_point))
            endMarker = aMap.addMarker(options)
        }
    }
 
    private var drivingRouteOverlay: DrivingRouteOverlay? = null
    override fun onDriveRouteSearched(result: DriveRouteResult?, errorCode: Int) {
        if (errorCode == 1000) {
            drivingRouteOverlay?.removeFromMap()
            if (result?.paths != null) {
                if (result.paths.size > 0) {
                    val drivePath = result.paths[0]
                    drivingRouteOverlay = DrivingRouteOverlay(
                        activity, aMap, drivePath,
                        result.startPos,
                        result.targetPos
                    )
                    drivingRouteOverlay!!.setNodeIconVisibility(false)
                    drivingRouteOverlay!!.addToMap(Color.parseColor("#00C47A"))
                    drivingRouteOverlay!!.zoomToSpan(50, 400, 50, 1000)
                    setMarker(
                        LatLng(endLat, endLon),
                        String.format("大约行驶%d分钟", drivePath.duration / 60)
                    )
                }
            }
        }
    }
 
    override fun onBusRouteSearched(p0: BusRouteResult?, p1: Int) {
    }
 
    override fun onRideRouteSearched(p0: RideRouteResult?, p1: Int) {
    }
 
    override fun onWalkRouteSearched(p0: WalkRouteResult?, p1: Int) {
    }
 
 
    var savedInstanceState: Bundle? = null
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        this.savedInstanceState = savedInstanceState
    }
 
    override fun onResume() {
        super.onResume()
        mMapView.onResume()
    }
 
    override fun onPause() {
        super.onPause()
        mMapView.onPause()
    }
 
    override fun onDestroy() {
        super.onDestroy()
        mMapView.onDestroy()
    }
 
    override fun onSaveInstanceState(outState: Bundle) {
        super.onSaveInstanceState(outState)
        mMapView.onSaveInstanceState(outState)
    }
 
    override fun onLowMemory() {
        super.onLowMemory()
        mMapView.onLowMemory()
    }
}