@extends('layouts.admin.master') @section('content') @php $page_title = 'Tambah Rute Baru'; $page_attr = ['title' => $page_title, 'sub_title' => 'Form Input Rute', 'icon' => 'fas fa-route']; @endphp
{{ $page_title }}
@csrf
Pilih marker sebagai titik awal rute
Pilih marker sebagai titik akhir rute
Peta Rute
Informasi Rute
Jarak
-
Durasi
-

Pilih asal dan tujuan untuk melihat petunjuk rute

Batal
@endsection @section('stylesheet') @endsection @section('javascript') @php $mapCenter = config('leaflet.map_center', [-2.5489, 118.0149]); $mapZoom = config('leaflet.map_zoom', 5); $mapBounds = config('leaflet.map_bounds', [[-11, 95], [6, 141]]); $markersJson = collect($markers)->map(fn($marker) => [ 'id' => $marker['id'], 'title' => $marker['title'], 'lat' => $marker['lat'], 'lng' => $marker['lng'], 'icon' => $marker['icon'] ?? null, ]); @endphp @endsection