28 lines
1.1 KiB
HTML
28 lines
1.1 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-row>
|
|
<div nz-col [nzSpan]="24">
|
|
<amap-path-simplifier [mapWidth]="'100%'" [mapHeight]="'600px'" [mapList]="MapList">
|
|
</amap-path-simplifier>
|
|
<st [scroll]="{ y: '350px' }" #st [data]="addressItems" [columns]="logColumns2" [ps]="0"
|
|
[page]="{ show: false, showSize: false }" size="small" class="map_st">
|
|
</st>
|
|
<nz-radio-group [(ngModel)]="trajectory" (ngModelChange)="trajectoryChange($event)" class="map_radio">
|
|
<label nz-radio-button nzValue="car">车辆轨迹</label>
|
|
<label nz-radio-button nzValue="driver">司机轨迹</label>
|
|
</nz-radio-group>
|
|
</div>
|
|
</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> |