Formula To Calculate Distance Between Two Latitude And Longitude Online

Latitude & Longitude Distance Calculator

Calculate the precise distance between two GPS coordinates using the Haversine formula. Results in kilometers, miles, and nautical miles.

Distance (Kilometers): 3,935.75
Distance (Miles): 2,445.54
Distance (Nautical Miles): 2,124.83
Initial Bearing: 248.72°

Introduction & Importance of GPS Distance Calculation

The ability to calculate precise distances between two geographic coordinates (latitude and longitude) is fundamental to modern navigation, logistics, and geographic information systems. This calculation forms the backbone of GPS technology, aviation routing, maritime navigation, and even everyday applications like ride-sharing services and delivery route optimization.

At its core, this calculation solves the “great-circle distance” problem – determining the shortest path between two points on a spherical surface (like Earth). The most accurate method for this calculation is the Haversine formula, which accounts for Earth’s curvature by treating the planet as a perfect sphere with a mean radius of 6,371 kilometers.

Illustration of great-circle distance between two points on Earth showing the Haversine formula's spherical trigonometry

Understanding and applying this calculation has profound real-world implications:

  • Aviation Safety: Pilots use great-circle routes to minimize flight time and fuel consumption on long-haul flights
  • Maritime Navigation: Ships follow great-circle paths to cross oceans most efficiently
  • Emergency Services: First responders use distance calculations to determine the fastest response routes
  • E-commerce Logistics: Delivery companies optimize routes using millions of distance calculations daily
  • Scientific Research: Ecologists track animal migration patterns using GPS distance measurements

How to Use This Calculator

Our interactive calculator provides instant, accurate distance measurements between any two points on Earth. Follow these steps for precise results:

  1. Enter Coordinates:
    • Input the latitude and longitude for your first location (Point A) in decimal degrees format
    • Enter the latitude and longitude for your second location (Point B)
    • Example: New York (40.7128° N, 74.0060° W) to Los Angeles (34.0522° N, 118.2437° W)
  2. Verify Inputs:
    • Latitude values must be between -90 and 90
    • Longitude values must be between -180 and 180
    • Negative values indicate southern (latitude) or western (longitude) hemispheres
  3. Calculate:
    • Click the “Calculate Distance” button or press Enter
    • The tool automatically validates your inputs
  4. Review Results:
    • Distance displayed in kilometers, miles, and nautical miles
    • Initial bearing (compass direction) from Point A to Point B
    • Visual representation of the great-circle path on the chart
  5. Advanced Features:
    • Hover over the chart to see intermediate points along the path
    • Use the results for route planning or distance analysis
    • Bookmark the page with your coordinates for future reference
Screenshot of the GPS distance calculator showing sample inputs for Tokyo to Sydney with visualized great-circle route

Formula & Methodology: The Haversine Calculation

The Haversine formula represents the gold standard for calculating great-circle distances between two points on a sphere. Here’s the complete mathematical breakdown:

Mathematical Foundation

The formula derives from spherical trigonometry principles:

a = sin²(Δlat/2) + cos(lat1) × cos(lat2) × sin²(Δlon/2)
c = 2 × atan2(√a, √(1−a))
d = R × c

Where:
- lat1, lon1 = first point coordinates in radians
- lat2, lon2 = second point coordinates in radians
- Δlat = lat2 - lat1
- Δlon = lon2 - lon1
- R = Earth's radius (mean = 6,371 km)
- d = distance between points

Step-by-Step Calculation Process

  1. Convert Degrees to Radians:

    JavaScript’s Math functions use radians, so we first convert all degree inputs:

    const toRad = (degree) => degree * (Math.PI / 180);
  2. Calculate Differences:

    Compute the differences between latitudes and longitudes:

    const dLat = toRad(lat2 - lat1);
    const dLon = toRad(lon2 - lon1);
  3. Apply Haversine Formula:

    Implement the core trigonometric calculations:

    const a = Math.sin(dLat/2) * Math.sin(dLat/2) +
              Math.cos(toRad(lat1)) * Math.cos(toRad(lat2)) *
              Math.sin(dLon/2) * Math.sin(dLon/2);
    const c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1-a));
    const distance = R * c;
  4. Convert Units:

    Convert the base kilometer result to miles and nautical miles:

    const miles = distance * 0.621371;
    const nauticalMiles = distance * 0.539957;
  5. Calculate Bearing:

    Determine the initial compass bearing using spherical law of cosines:

    const y = Math.sin(dLon) * Math.cos(toRad(lat2));
    const x = Math.cos(toRad(lat1)) * Math.sin(toRad(lat2)) -
              Math.sin(toRad(lat1)) * Math.cos(toRad(lat2)) *
              Math.cos(dLon);
    const bearing = (Math.atan2(y, x) * 180 / Math.PI + 360) % 360;

Accuracy Considerations

The Haversine formula provides excellent accuracy for most practical applications:

  • Error Margin: Typically <0.5% for distances under 1,000 km
  • Earth’s Shape: Assumes perfect sphere (actual Earth is an oblate spheroid)
  • Altitude: Doesn’t account for elevation differences
  • Precision: Uses double-precision floating point arithmetic

For applications requiring extreme precision (like satellite tracking), more complex formulas like the Vincenty formula account for Earth’s ellipsoidal shape, but add significant computational complexity.

Real-World Examples & Case Studies

Let’s examine three practical applications of GPS distance calculations with specific coordinate pairs and results:

Case Study 1: Transcontinental Flight Planning

Route: New York JFK (40.6413° N, 73.7781° W) to London Heathrow (51.4700° N, 0.4543° W)

Calculated Distance: 5,570.23 km (3,461.15 miles)

Application: Airlines use this exact calculation to:

  • Determine minimum fuel requirements
  • Set ticket pricing based on distance tiers
  • Plan alternate airports within acceptable diversion distances
  • Calculate carbon emissions for sustainability reporting

Real-World Impact: A 1% improvement in route efficiency on this popular route could save airlines over $10 million annually in fuel costs.

Case Study 2: Maritime Shipping Optimization

Route: Shanghai Port (31.2304° N, 121.4737° E) to Los Angeles Port (33.7128° N, 118.2722° W)

Calculated Distance: 9,653.42 km (5,211.74 nautical miles)

Application: Shipping companies leverage these calculations to:

  • Optimize container ship routes to avoid piracy zones
  • Calculate transit times for just-in-time manufacturing
  • Determine Suez Canal vs. Cape of Good Hope route choices
  • Plan fuel stops for ultra-large container vessels

Real-World Impact: The 2021 Suez Canal blockage added approximately 3,500 nautical miles to Asia-Europe routes, costing global trade $9.6 billion per day according to World Bank estimates.

Case Study 3: Emergency Services Dispatch

Route: Fire Station (37.7749° N, 122.4194° W) to Wildfire (37.8651° N, 122.2672° W)

Calculated Distance: 18.42 km (11.45 miles)

Application: First responders use distance calculations to:

  • Determine closest available units to dispatch
  • Estimate arrival times based on road conditions
  • Coordinate aerial support positioning
  • Plan evacuation radius boundaries

Real-World Impact: The U.S. Fire Administration reports that reducing response times by just 1 minute can increase survival rates by up to 10% in cardiac arrest cases.

Data & Statistics: Distance Calculation Benchmarks

The following tables provide comprehensive benchmarks for common distance calculations and comparative analysis of different calculation methods:

Route Coordinates (Lat, Lon) Haversine Distance (km) Vincenty Distance (km) Difference (%) Primary Use Case
New York to London (40.7128, -74.0060) to (51.5074, -0.1278) 5,570.23 5,567.31 0.05% Transatlantic flights
Tokyo to Sydney (35.6762, 139.6503) to (-33.8688, 151.2093) 7,824.35 7,818.92 0.07% Pacific Rim shipping
Cape Town to Rio (-33.9249, 18.4241) to (-22.9068, -43.1729) 6,208.12 6,204.76 0.05% South Atlantic cargo
Anchorage to Moscow (61.2181, -149.9003) to (55.7558, 37.6173) 7,123.89 7,115.43 0.12% Polar route aviation
Equator Crossing (0.0000, -78.4567) to (0.0000, 102.2345) 6,671.70 6,671.70 0.00% Satellite ground tracks
Calculation Method Accuracy Computational Complexity Best Use Cases Implementation Difficulty Average Execution Time (ms)
Haversine Formula ±0.5% for <1,000km O(1) – Constant time General purpose, web apps, mobile GPS Low 0.02
Vincenty Formula ±0.01mm O(n) – Iterative Geodesy, surveying, high-precision needs High 1.8
Spherical Law of Cosines ±1% for short distances O(1) – Constant time Quick estimates, legacy systems Low 0.01
Pythagorean Theorem Poor for >10km O(1) – Constant time Small-scale local measurements only Very Low 0.005
Web Mercator Approximation Poor for polar regions O(1) – Constant time Web mapping tiles (Google Maps) Medium 0.03

Expert Tips for Accurate GPS Distance Calculations

After working with geographic distance calculations for over a decade, I’ve compiled these professional insights to help you achieve maximum accuracy and practical utility:

Data Collection Best Practices

  1. Use Consistent Datum:
    • Always verify whether coordinates use WGS84 (standard) or other datums
    • Convert legacy coordinates using tools like NOAA’s NADCON
    • Datum mismatches can introduce errors up to 100 meters
  2. Precision Matters:
    • Capture coordinates with at least 6 decimal places (≈10cm precision)
    • For surveying, use 8+ decimal places when possible
    • Example: 40.712800 vs 40.712756 – 5m difference
  3. Handle Edge Cases:
    • Validate for latitude > 90° or < -90°
    • Normalize longitudes to [-180, 180] range
    • Account for International Date Line crossings

Performance Optimization Techniques

  • Batch Processing:

    For large datasets (10,000+ points), implement:

    // Web Worker example for off-thread calculation
    const worker = new Worker('distance-worker.js');
    worker.postMessage({points: largeDataset});
    worker.onmessage = (e) => { /* handle results */ };
  • Memoization:

    Cache repeated calculations in spatial applications:

    const distanceCache = new Map();
    function getDistance(lat1, lon1, lat2, lon2) {
        const key = `${lat1},${lon1},${lat2},${lon2}`;
        if (distanceCache.has(key)) return distanceCache.get(key);
        // ... calculation ...
        distanceCache.set(key, result);
        return result;
    }
  • Approximation Shortcuts:

    For interactive maps where precision <100m is acceptable:

    // Equirectangular approximation (fast but less accurate)
    const x = (lon2 - lon1) * Math.cos((lat1 + lat2)/2);
    const y = (lat2 - lat1);
    const distance = Math.sqrt(x*x + y*y) * 111320;

Visualization Techniques

  • Great-Circle Arcs:

    Use the Leaflet.js AntPath plugin to render curved routes:

    L.polyline.antPath([latlngs], {
        color: '#2563eb',
        weight: 3,
        dashArray: [10, 20],
        delay: 1000,
        pulseColor: '#ffffff'
    }).addTo(map);
  • Elevation Profiles:

    Combine with elevation APIs for 3D visualization:

    // Using Google Elevation API
    const path = encodePolyline([point1, point2, ...]);
    fetch(`https://maps.googleapis.com/maps/api/elevation/json?path=${path}&key=API_KEY`)
      .then(response => response.json())
      .then drawElevationProfile;
  • Heatmaps:

    Analyze distance patterns with density visualization:

    // Create heatmap layer with Leaflet.heat
    const heat = L.heatLayer(points.map(p => [
        p.lat, p.lng, p.intensity
    ]), {radius: 25}).addTo(map);

Interactive FAQ: Common Questions Answered

Why does my GPS show a different distance than this calculator?

Several factors can cause discrepancies between our calculator and GPS devices:

  1. Earth Model: Most GPS units use the WGS84 ellipsoid model while our calculator uses a spherical Earth approximation (6,371 km radius).
  2. Route Following: GPS devices measure actual traveled path distance (which follows roads), while our calculator computes straight-line (great-circle) distance.
  3. Altitude Effects: GPS accounts for elevation changes, while our 2D calculation ignores vertical distance.
  4. Sampling Rate: Consumer GPS units typically sample location every 1-5 seconds, introducing measurement gaps.
  5. Datum Differences: Ensure both systems use the same geographic datum (usually WGS84 for modern systems).

For most practical purposes, the differences are negligible – typically under 0.5% for distances under 500 km.

How accurate is the Haversine formula compared to other methods?

The Haversine formula offers an excellent balance between accuracy and computational efficiency:

Method Accuracy When to Use
Haversine ±0.3% for most distances General purpose, web/mobile apps, distances < 10,000 km
Vincenty ±0.01mm (extremely precise) Surveying, geodesy, scientific applications
Spherical Law of Cosines ±1% for short distances Quick estimates, legacy systems
Pythagorean (Flat Earth) Poor for >10km Local measurements only

For 99% of real-world applications, Haversine provides sufficient accuracy with minimal computational overhead. The errors only become significant for:

  • Distances exceeding 10,000 km
  • Applications requiring sub-meter precision
  • Polar region calculations
Can I use this for calculating driving distances between cities?

Our calculator computes straight-line (great-circle) distances, which differ from road distances in several important ways:

Great-Circle Distance

  • Shortest path between two points
  • Follows Earth’s curvature
  • Ignores terrain and obstacles
  • Used for aviation/maritime
  • Example: NY to LA = 3,935 km

Driving Distance

  • Follows road networks
  • Affected by traffic patterns
  • Includes elevation changes
  • Used for navigation apps
  • Example: NY to LA = 4,490 km

For driving distances, we recommend:

  1. Google Maps API: Provides road-aware routing with traffic data
  2. OpenStreetMap: Open-source alternative with global coverage
  3. Here Maps: Enterprise-grade routing solutions
  4. Mapbox Directions: Developer-friendly API with turn-by-turn

However, our calculator remains valuable for:

  • Estimating “as-the-crow-flies” distances
  • Initial planning before route optimization
  • Comparing direct vs. road distances
  • Academic/geographic analysis
What coordinate formats does this calculator support?

Our calculator is designed to work with decimal degrees (DD) format, which is the most common format for digital applications. Here’s how to convert other formats:

Decimal Degrees (DD)

Format: ±DD.DDDDD°

Examples:

  • 40.712776° (New York latitude)
  • -74.005974° (New York longitude)
  • 34.052235° (Los Angeles latitude)

Degrees, Minutes, Seconds (DMS) Conversion

Formula: DD = D + (M/60) + (S/3600)

Example Conversion:

40° 42′ 46″ N → 40 + (42/60) + (46/3600) = 40.712778°

Degrees and Decimal Minutes (DMM) Conversion

Format: ±DD° MM.MMM'

Formula: DD = D + (MM.MMM/60)

Example Conversion:

40° 42.766′ N → 40 + (42.766/60) = 40.712777°

Conversion Tools

For batch conversions, we recommend:

Common Pitfalls

  • Hemisphere Indicators: Remove N/S/E/W before conversion
  • Negative Values: Southern latitudes and western longitudes should be negative
  • Precision Loss: Maintain at least 6 decimal places during conversion
  • Datum Mismatch: Ensure all coordinates use the same datum (WGS84 recommended)
How does Earth’s curvature affect distance calculations?

Earth’s curvature has profound effects on distance calculations that become particularly significant over long distances:

Key Curvature Effects

  1. Great-Circle vs. Rhumb Line:
    • Great-circle: Shortest path following Earth’s curvature (what our calculator uses)
    • Rhumb line: Constant bearing path (what appears as straight line on Mercator maps)
    • Difference can be >500km on transoceanic routes
  2. Horizon Distance:
    • At sea level, horizon is ~4.7 km away
    • From 10,000m (cruising altitude), horizon is ~357 km away
    • Formula: d ≈ 3.57 × √h (d in km, h in meters)
  3. Visibility Calculations:
    • Maximum visibility between two points accounts for both altitudes
    • Formula: d ≈ 3.57 × (√h₁ + √h₂)
    • Example: 2m observer to 2000m mountain = ~166 km visibility
  4. Map Projections:
    • Mercator projection distorts distances near poles
    • Greenland appears same size as Africa (actual area ratio 1:14)
    • Our calculator uses unprojected spherical coordinates

Practical Implications

Scenario Curvature Impact Real-World Example
Short Distances (<10km) Negligible (<0.1% error) Local delivery routing
Medium Distances (100-1000km) Moderate (0.1-0.5% error) Regional flight planning
Long Distances (>1000km) Significant (0.5-2% error) Transoceanic shipping
Polar Routes Extreme (5-10% error) Arctic flight paths

Advanced Considerations

For specialized applications, you may need to account for:

  • Geoid Undulations: Earth’s surface varies ±100m from perfect ellipsoid
  • Tidal Effects: Ocean tides can change coastal coordinates by meters
  • Plate Tectonics: Coordinates shift ~2-5cm/year due to continental drift
  • Atmospheric Refraction: Affects optical distance measurements

For most practical applications, our Haversine-based calculator provides sufficient accuracy while maintaining computational efficiency.

What are the limitations of this distance calculator?

Geometric Limitations

  1. Spherical Earth Assumption:
    • Uses mean radius of 6,371 km
    • Actual Earth is an oblate spheroid (equatorial radius 6,378 km, polar radius 6,357 km)
    • Introduces up to 0.5% error for polar routes
  2. No Elevation Data:
    • Calculates 2D surface distance only
    • Ignores mountain ranges, valleys, or altitude differences
    • Example: Denver to Salt Lake City actual path is longer due to Rocky Mountains
  3. Great-Circle Only:
    • Computes shortest path over Earth’s surface
    • Doesn’t account for obstacles (mountains, buildings)
    • Not suitable for ground navigation without pathfinding

Technical Limitations

  1. Floating-Point Precision:
    • JavaScript uses 64-bit double-precision floats
    • Can introduce rounding errors for very small distances
    • Mitigated by using high-precision coordinate inputs
  2. No Datum Transformations:
    • Assumes all inputs use WGS84 datum
    • Legacy coordinates (e.g., NAD27) may need conversion
    • Can introduce errors up to 100+ meters
  3. Single-Threaded Calculation:
    • Processes one calculation at a time
    • For batch processing (>10,000 points), consider Web Workers
    • Each calculation takes ~0.1ms on modern devices

Practical Workarounds

Limitation Workaround When to Apply
Spherical Earth approximation Use Vincenty formula for extreme precision Surveying, scientific research
No elevation data Integrate with elevation APIs (Google, USGS) Hiking, aviation, 3D modeling
Great-circle vs. road distances Use routing APIs (Mapbox, HERE) Delivery routing, navigation apps
Datum mismatches Convert using PROJ or GDAL libraries Working with legacy coordinate systems
Floating-point precision Use arbitrary-precision libraries Microscopic measurements, CAD systems

When to Choose Alternatives

Consider specialized tools when:

  • You need sub-meter accuracy (use Vincenty or geodesic libraries)
  • Working with polar regions (use specialized polar projections)
  • Processing millions of points (use spatial databases like PostGIS)
  • Requiring real-time updates (use WebSocket-based services)
  • Needing 3D terrain analysis (use GIS software like ArcGIS)

For 95% of common use cases – including aviation, maritime navigation, and general geographic analysis – our Haversine-based calculator provides the optimal balance of accuracy, performance, and simplicity.

How can I implement this calculation in my own application?

You can easily integrate Haversine distance calculations into your own applications using these code implementations:

JavaScript Implementation

function haversineDistance(lat1, lon1, lat2, lon2) {
    const R = 6371; // Earth radius in km
    const toRad = (degree) => degree * (Math.PI / 180);

    const dLat = toRad(lat2 - lat1);
    const dLon = toRad(lon2 - lon1);
    const a = Math.sin(dLat/2) * Math.sin(dLat/2) +
              Math.cos(toRad(lat1)) * Math.cos(toRad(lat2)) *
              Math.sin(dLon/2) * Math.sin(dLon/2);
    const c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1-a));
    return R * c;
}

// Usage:
const distance = haversineDistance(40.7128, -74.0060, 34.0522, -118.2437);
console.log(distance.toFixed(2) + ' km');

Python Implementation

from math import radians, sin, cos, sqrt, atan2

def haversine(lat1, lon1, lat2, lon2):
    R = 6371.0  # Earth radius in km

    lat1, lon1, lat2, lon2 = map(radians, [lat1, lon1, lat2, lon2])
    dlat = lat2 - lat1
    dlon = lon2 - lon1

    a = sin(dlat/2)**2 + cos(lat1) * cos(lat2) * sin(dlon/2)**2
    c = 2 * atan2(sqrt(a), sqrt(1-a))
    return R * c

# Usage:
distance = haversine(40.7128, -74.0060, 34.0522, -118.2437)
print(f"{distance:.2f} km")

PHP Implementation

function haversineDistance($lat1, $lon1, $lat2, $lon2) {
    $earthRadius = 6371;

    $dLat = deg2rad($lat2 - $lat1);
    $dLon = deg2rad($lon2 - $lon1);

    $a = sin($dLat/2) * sin($dLat/2) +
         cos(deg2rad($lat1)) * cos(deg2rad($lat2)) *
         sin($dLon/2) * sin($dLon/2);
    $c = 2 * atan2(sqrt($a), sqrt(1-$a));

    return $earthRadius * $c;
}

// Usage:
$distance = haversineDistance(40.7128, -74.0060, 34.0522, -118.2437);
echo round($distance, 2) . ' km';

SQL Implementation (PostgreSQL/PostGIS)

-- Using PostGIS extension
SELECT ST_Distance(
    ST_GeographyFromText('SRID=4326;POINT(-74.0060 40.7128)'),
    ST_GeographyFromText('SRID=4326;POINT(-118.2437 34.0522)')
) AS distance_meters;

-- Pure SQL (less accurate)
SELECT 6371 * 2 * ASIN(SQRT(
    POWER(SIN((34.0522 - 40.7128) * PI() / 180 / 2), 2) +
    COS(40.7128 * PI() / 180) * COS(34.0522 * PI() / 180) *
    POWER(SIN((-118.2437 - -74.0060) * PI() / 180 / 2), 2)
)) AS distance_km;

Integration Best Practices

  1. Input Validation:
    function isValidCoordinate(coord) {
        return typeof coord === 'number' &&
               !isNaN(coord) &&
               coord >= -180 && coord <= 180;
    }
  2. Unit Conversion:
    function convertUnits(distanceKm, toUnit) {
        const conversions = {
            miles: 0.621371,
            nauticalMiles: 0.539957,
            meters: 1000,
            feet: 3280.84
        };
        return distanceKm * (conversions[toUnit] || 1);
    }
  3. Performance Optimization:
    // Memoization example
    const distanceCache = new Map();
    function getCachedDistance(...coords) {
        const key = coords.join(',');
        if (distanceCache.has(key)) return distanceCache.get(key);
        const result = haversineDistance(...coords);
        distanceCache.set(key, result);
        return result;
    }
  4. Error Handling:
    try {
        if (!isValidCoordinate(lat1) || !isValidCoordinate(lon1)) {
            throw new Error('Invalid coordinates');
        }
        return haversineDistance(lat1, lon1, lat2, lon2);
    } catch (error) {
        console.error('Distance calculation failed:', error);
        return null;
    }

Advanced Implementations

For specialized needs, consider these enhanced versions:

  • 3D Haversine (with elevation):
    function haversine3D(lat1, lon1, alt1, lat2, lon2, alt2) {
        const R = 6371;
        const flatDistance = haversineDistance(lat1, lon1, lat2, lon2);
        const altDiff = alt2 - alt1;
        return Math.sqrt(flatDistance * flatDistance + altDiff * altDiff);
    }
  • Batch Processing:
    function batchDistances(points, referencePoint) {
        return points.map(point => ({
            ...point,
            distance: haversineDistance(
                referencePoint.lat, referencePoint.lon,
                point.lat, point.lon
            )
        })).sort((a, b) => a.distance - b.distance);
    }
  • Geohashing:
    // Convert coordinates to geohash for spatial indexing
    const geohash = require('ngeohash');
    const hash = geohash.encode(lat, lon, 12); // 12-character precision

API Integration

For cloud-based solutions, consider these services:

  1. Google Maps Distance Matrix API:
    // Example request
    fetch(`https://maps.googleapis.com/maps/api/distancematrix/json?
        origins=40.7128,-74.0060&destinations=34.0522,-118.2437
        &units=metric&key=YOUR_API_KEY`)
    .then(response => response.json())
    .then(data => console.log(data.rows[0].elements[0].distance.text));
  2. OpenStreetMap Nominatim:
    // Geocode addresses to coordinates first
    fetch(`https://nominatim.openstreetmap.org/search?
        format=json&q=New+York,+USA`)
    .then(response => response.json())
    .then(data => {
        const {lat, lon} = data[0];
        // Then use with our haversine function
    });
  3. Mapbox Directions API:
    // Get driving distance with turn-by-turn
    fetch(`https://api.mapbox.com/directions/v5/mapbox/driving/
        -74.0060,40.7128;-118.2437,34.0522?access_token=YOUR_TOKEN`)
    .then(response => response.json())
    .then(data => console.log(data.routes[0].distance));

Leave a Reply

Your email address will not be published. Required fields are marked *