Rev 2 | Blame | Compare with Previous | Last modification | View Log | RSS feed
<?phpclass GeoPoint {public $latitude;public $longitude;public function __construct($lat, $lng) {$this->latitude = (float) $lat;$this->longitude = (float) $lng;}}?>