@extends('layouts.app') @section('title', 'Monitor / Province Zoning') @section('content')

Canadian Province Zoning

Province and territory zoning is restored. Open each province to manage its four zones, or open the live traffic map to see highway traffic with Google Traffic Layer when your Maps key is configured.

Canada Traffic Map Province Traffic Index
Provinces / Territories{{ $states->count() }}
Low Traffic{{ $trafficCounts['low'] ?? 0 }}
High / Critical{{ ($trafficCounts['high'] ?? 0) + ($trafficCounts['critical'] ?? 0) }}
Live Traffic Layer{{ $googleMapsKey ? 'Ready' : 'Needs Key' }}
@if(! $googleMapsKey)
Google traffic key not configured.

The app will still show zoning and database traffic status, but real road/highway traffic needs GOOGLE_MAPS_BROWSER_KEY in .env.

@endif
@foreach($states as $state) @endforeach
Province / Territory Code Traffic Level Zones Traffic Map
@endsection