35 lines
1.4 KiB
HTML
35 lines
1.4 KiB
HTML
<!--
|
|
* @Description :
|
|
* @Version : 1.0
|
|
* @Author : Shiming
|
|
* @Date : 2022-02-22 13:53:29
|
|
* @LastEditors : Shiming
|
|
* @LastEditTime : 2022-03-08 15:01:14
|
|
* @FilePath : \\tms-obc-web\\src\\app\\routes\\order-management\\modal\\vehicle\\view-track\\view-track.component.html
|
|
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
|
-->
|
|
<div>
|
|
<nz-card nzTitle="轨迹信息" [nzExtra]="extraTemplate" >
|
|
<div style="display: flex; flex: 1;">
|
|
<div style=" flex: 1;">
|
|
<st #st [scroll]="{y: '500px'}" style="min-height: 600px;" [data]="addressItems" [columns]="logColumns2" [ps]="0" [page]="{ show: false, showSize: false }">
|
|
</st>
|
|
</div>
|
|
<div style="flex: 1;" >
|
|
<amap-path-simplifier [mapWidth]="'100%'" [mapHeight]="'600px'" [mapList]="MapList"></amap-path-simplifier>
|
|
</div>
|
|
</div>
|
|
</nz-card>
|
|
<ng-template #extraTemplate>
|
|
<nz-radio-group [(ngModel)]="trajectory" (ngModelChange)="trajectoryChange($event)">
|
|
<label nz-radio-button nzValue="car">车辆轨迹</label>
|
|
<label nz-radio-button nzValue="driver">司机轨迹</label>
|
|
</nz-radio-group>
|
|
</ng-template>
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
<button nz-button type="button" (click)="close(false)">取消</button>
|
|
<button nz-button type="submit" nzType="primary" (click)="close(true)">确认</button>
|
|
</div>
|