1. Go to this page and download the library: Download vancuren/php-turf library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
vancuren / php-turf example snippets
*ncuren\PhpTurf\Point;
*// Create some points*
$point1 = new Point([-73.9864, 40.7486]); *// New York, NY*
$point2 = new Point([-118.2437, 34.0522]); *// Los Angeles, CA*
*// Calculate distance between points*
$distance = Measurement::distance($point1, $point2);
echo "Distance between New York and Los Angeles: " . $distance . " kilometers\n";
$point1 = new Point([-73.9864, 40.7486]); // New York, NY*
$point2 = new Point([-118.2437, 34.0522]); // Los Angeles, CA*
$point1 = new Point([-73.9864, 40.7486]); *// New York, NY*
$point2 = new Point([-118.2437, 34.0522]); *// Los Angeles, CA*
$bearing = Measurement::bearing($point1, $point2);
$points = [
new Point([-73.9864, 40.7486]), // New York, NY
new Point([-118.2437, 34.0522]), // Los Angeles, CA
new Point([-87.6298, 41.8781]), // Chicago, IL
new Point([-95.3698, 29.7604]) // Houston, TX
];
$featureCollection = new FeatureCollection($points);
$center = Measurement::center($featureCollection);
$point = new Point([-73.9864, 40.7486]); *// New York, NY*
$distance = 3944; *// Roughly the distance to Los Angeles, CA*
$bearing = 273; *// Bearing to Los Angeles, CA*
$destination = Measurement::destination($point, $distance, $bearing);
$point1 = new Point([-73.9864, 40.7486]); *// New York, NY*
$point2 = new Point([-118.2437, 34.0522]); *// Los Angeles, CA*
$distance = Measurement::distance($point1, $point2);
$point1 = new Point([-73.9864, 40.7486]); *// New York, NY*
$point2 = new Point([-118.2437, 34.0522]); *// Los Angeles, CA*
$midpoint = Measurement::midpoint($point1, $point2);
$referencePoint = new Point([-73.9864, 40.7486]); *// New York, NY*
$points = [
new Point([-118.2437, 34.0522]), *// Los Angeles, CA*
new Point([-87.6298, 41.8781]), *// Chicago, IL*
new Point([-95.3698, 29.7604]) *// Houston, TX*
];
$nearestPoint = Measurement::nearestPoint($referencePoint, $points);