Subversion Repositories eFlore/Projets.communes

Compare Revisions

Ignore whitespace Rev 1 → Rev 2

/trunk/bibliotheque/GeoPoint.php
New file
0,0 → 1,11
<?php
class GeoPoint {
public $latitude;
public $longitude;
 
public function __construct($lat, $lng) {
$this->latitude = (float) $lat;
$this->longitude = (float) $lng;
}
}
?>