UIPackage
Menu

Framework

Change language

Boilerplate repo

Leaflet Delivery Tracking Map

blocklogistics

Live order delivery route on free OpenStreetMap tiles — no API key. Courier position, dropoff destination, and ETA telemetry.

Also available for React ->

Installation

$npx shadcn-vue@latest add https://uipkge.dev/r/vue/leaflet-delivery-tracking-map.json
Named registry:npx shadcn-vue@latest add @uipkge/leaflet-delivery-tracking-mapInstalls to:app/components/blocks/

Variants

Loading interactive previews…

Props

NameType / ValuesDefaultRequired
classHTMLAttributes['class']optional

Files installed (1)

  • app/components/blocks/LeafletDeliveryTrackingMap.vue5.3 kB
    <script setup lang="ts">
    import type { HTMLAttributes } from 'vue'
    import { ref } from 'vue'
    import { cn } from '@/lib/utils'
    import { Card, CardContent, CardHeader, CardTitle, CardDescription } from '@/components/ui/card'
    import { Badge } from '@/components/ui/badge'
    import { Button } from '@/components/ui/button'
    import { LeafletMap, LeafletMarker, LeafletPolyline, type LeafletMapRef } from '@/components/ui/leaflet-map'
    
    export interface LeafletDeliveryTrackingMapProps {
      class?: HTMLAttributes['class']
    }
    
    const props = defineProps<LeafletDeliveryTrackingMapProps>()
    
    const mapRef = ref<LeafletMapRef | null>(null)
    
    const origin = [-122.4194, 37.7749] as [number, number]
    const destination = [-122.392, 37.7915] as [number, number]
    const courierPosition = ref<[number, number]>([-122.405, 37.783])
    
    const routeCoords: [number, number][] = [
      [-122.4194, 37.7749],
      [-122.414, 37.778],
      [-122.405, 37.783],
      [-122.399, 37.787],
      [-122.392, 37.7915],
    ]
    
    function focusCourier() {
      mapRef.value?.flyTo?.({ center: courierPosition.value, zoom: 14.5, duration: 800 })
    }
    
    function focusDestination() {
      mapRef.value?.flyTo?.({ center: destination, zoom: 15, duration: 800 })
    }
    </script>
    
    <template>
      <div data-slot="leaflet-delivery-tracking-map" :class="cn('grid gap-4 lg:grid-cols-[1fr_320px]', props.class)">
        <div class="border-border bg-card relative h-[480px] overflow-hidden rounded-xl border">
          <LeafletMap ref="mapRef" variant="dark" :center="courierPosition" :zoom="13.5" class="h-full w-full">
            <LeafletPolyline :lng-lat-path="routeCoords" color="#2563eb" :weight="4" line-cap="round" line-join="round" />
            <!-- Restaurant / Merchant -->
            <LeafletMarker :lng-lat="origin" anchor="bottom">
              <div class="flex flex-col items-center">
                <span class="bg-muted-foreground ring-muted size-3 rounded-full ring-4" />
                <span class="border-border bg-background/90 mt-1 rounded border px-1.5 py-0.5 font-mono text-xs"
                  >Merchant</span
                >
              </div>
            </LeafletMarker>
            <!-- Live Courier -->
            <LeafletMarker :lng-lat="courierPosition" anchor="center">
              <div class="relative flex cursor-pointer items-center justify-center" @click="focusCourier">
                <span class="bg-primary/25 absolute size-7 animate-ping rounded-full" />
                <div
                  class="bg-primary text-primary-foreground ring-background flex size-7 items-center justify-center rounded-full shadow-md ring-2"
                >
                  🛵
                </div>
              </div>
            </LeafletMarker>
            <!-- Destination -->
            <LeafletMarker :lng-lat="destination" anchor="bottom">
              <div class="flex cursor-pointer flex-col items-center" @click="focusDestination">
                <span class="bg-success ring-success/20 size-3 rounded-full ring-4" />
                <span
                  class="border-border bg-background/90 text-success mt-1 rounded border px-1.5 py-0.5 font-mono text-xs font-semibold"
                >
                  Delivery Dropoff
                </span>
              </div>
            </LeafletMarker>
          </LeafletMap>
        </div>
    
        <!-- Telemetry & Order Status -->
        <Card class="flex flex-col justify-between">
          <CardHeader>
            <div class="flex items-center justify-between">
              <Badge variant="outline" class="font-mono text-xs">ORDER #8924</Badge>
              <Badge class="border-success/20 bg-success/10 text-success">Approaching</Badge>
            </div>
            <CardTitle class="mt-2 text-lg">Express Courier</CardTitle>
            <CardDescription
              >Estimated delivery in <strong class="text-foreground">8 mins</strong> (0.8 mi away)</CardDescription
            >
          </CardHeader>
          <CardContent class="space-y-4">
            <div class="border-border space-y-2 border-t pt-3">
              <div class="flex items-center justify-between text-xs">
                <span class="text-muted-foreground">Driver</span>
                <span class="text-foreground font-medium">Carlos M. (★ 4.98)</span>
              </div>
              <div class="flex items-center justify-between text-xs">
                <span class="text-muted-foreground">Vehicle</span>
                <span class="text-foreground font-mono">E-Scooter #412</span>
              </div>
              <div class="flex items-center justify-between text-xs">
                <span class="text-muted-foreground">Destination</span>
                <span class="text-foreground max-w-[170px] truncate font-medium">Market St & 2nd Ave</span>
              </div>
            </div>
    
            <div class="border-border space-y-1.5 border-t pt-3 font-mono text-xs">
              <div class="text-muted-foreground flex items-center gap-2">
                <span class="bg-success size-1.5 rounded-full"></span>
                <span>12:42 PM — Order picked up</span>
              </div>
              <div class="text-foreground flex items-center gap-2 font-medium">
                <span class="bg-primary size-1.5 animate-pulse rounded-full"></span>
                <span>12:51 PM — Approaching building</span>
              </div>
            </div>
    
            <div class="flex gap-2 pt-2">
              <Button variant="outline" size="sm" class="flex-1" @click="focusCourier">Track Courier</Button>
              <Button variant="outline" size="sm" class="flex-1" @click="focusDestination">Dropoff Point</Button>
            </div>
          </CardContent>
        </Card>
      </div>
    </template>
    

Raw manifest:https://uipkge.dev/r/vue/leaflet-delivery-tracking-map.json