2017-12-21 09:12:39 +08:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-12">
|
|
|
|
<div class="box-body">
|
2018-04-07 06:10:45 +08:00
|
|
|
<div id="map" style="width: 100%; height: 600px"></div>
|
2017-12-21 09:12:39 +08:00
|
|
|
</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['route_points']) !!},
|
|
|
|
planned_route_line: {!! json_encode($map_features['planned_route_line']) !!},
|
2018-04-01 04:57:30 +08:00
|
|
|
metar_wms: {!! json_encode(config('map.metar_wms')) !!},
|
2017-12-21 09:12:39 +08:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
@endsection
|