contributions/lib.geocalc/lib/interfaces/igeolocated.cls.php
Go to the documentation of this file.00001 <?php 00002 /** 00003 * Interface for elements having geo coordinates 00004 * 00005 * @ingroup GeoCalc 00006 * @author Gerd Riesselmann 00007 */ 00008 interface IGeoLocated { 00009 /** 00010 * Returns geo coordinate of element 00011 * 00012 * @return GeoCoordinate 00013 */ 00014 public function get_coordinate(); 00015 }