Cardiff Ramblers

Cerddwyr Caerdydd

The route taken on 26th April 2023, as one of the group's 40 favourite walks. Led by Claire Edwards in memory of Len Bowker.

 Tracks from many other of our walks over several years are available from our Past Walks gpx page.

<?php

//error_reporting(E_ALL);
//ini_set('display_errors', 1);

$picname = $_GET["pic"];

//$picname = "hello";

echo $picname;

//$gpx="images/gpx/$picname.gpx";
$gpx="images/gpx/20230426-NantFawrTrail.gpx";
$map=new RLeafletGpxMap(); // standard software to read json feed and decode file
$map->linecolour='#782327'; // optionally set the route's line colour
$map->addDownloadLink="Public"; //  "None" no download link, "Users" link if registered user; "Public" link for public
$map->displayPath($gpx);
?>