Select a location

Click on a marker to see details about that location.

Map Legend

Government
Commercial
Residential
Illegal
Public
@php $mapSettings = \App\Models\MapSetting::first(); $mapImagePath = $mapSettings && $mapSettings->image_path ? Storage::url($mapSettings->image_path) : asset('images/download.jpeg'); $locations = \App\Models\MapLocation::where('is_active', true) ->orderBy('order') ->get() ->map(function($location) { return [ 'id' => $location->id, 'name' => $location->name, 'description' => $location->description, 'x' => $location->x, 'y' => $location->y, 'type' => $location->type, 'details' => $location->details ?? null ]; }) ->toArray(); @endphp Server Map
@push('scripts') @endpush