2017-12-20 07:30:30 +08:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
2018-03-30 03:10:49 +08:00
|
|
|
<h4 class="description">flight map</h4>
|
2017-12-20 07:30:30 +08:00
|
|
|
</div>
|
|
|
|
<div class="col-12">
|
|
|
|
<div class="box-body">
|
|
|
|
<div id="map" style="width: 100%; height: 800px"></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@section('scripts')
|
|
|
|
<script type="text/javascript">
|
2018-03-13 06:30:52 +08:00
|
|
|
phpvms.map.render_route_map({
|
2018-03-13 07:10:35 +08:00
|
|
|
route_points: {!! json_encode($map_features['planned_rte_points']) !!},
|
|
|
|
planned_route_line: {!! json_encode($map_features['planned_rte_line']) !!},
|
|
|
|
actual_route_line: {!! json_encode($map_features['actual_route_line']) !!},
|
|
|
|
actual_route_points: {!! json_encode($map_features['actual_route_points']) !!},
|
2017-12-21 09:12:39 +08:00
|
|
|
});
|
2017-12-20 07:30:30 +08:00
|
|
|
</script>
|
|
|
|
@endsection
|