Main Page | Modules | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Class Members | File Members | Related Pages

traffic.inc.php

Go to the documentation of this file.
00001 <?
00002 class Traffic extends Geocode
00003 {
00004     public function __construct($key = null)
00005     {
00006         parent::__construct($key, "http://api.local.yahoo.com/MapsService/V1/trafficData");
00007         
00008         //cache only valid for 5 minutes... traffic
00009         self::$cacheLife = 300;
00010     }
00011 
00012     public function parseData($data)
00013     {
00014         return $data["ResultSet"];
00015     }
00016 }
00017 ?>

Generated on Fri Oct 27 12:26:40 2006 for BaseJumper by doxygen 1.3.9.1