east herts ramblers

<?php

// This page displays a map of furture walks
error_reporting(E_ALL);
ini_set('display_errors', 1);

$rafeedurl ="http://www.ramblers.org.uk/api/lbs/walks?groups=HF02";

$feed=new RJsonwalksFeed($rafeedurl); // standard software to read json feed and decode file

$display= new RJsonwalksLeafletMapmarker();

$feed->Display($display);

?>