Changeset 16320
- Timestamp:
- 03/16/09 01:46:49 (4 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/sfEasyGMapPlugin/trunk/lib/GMap.class.php
r16319 r16320 454 454 * Sets the center of the map at the beginning 455 455 * 456 * @param integer$lat457 * @param integer$lng456 * @param float $lat 457 * @param float $lng 458 458 */ 459 459 public function setCenter($lat=null,$lng=null) plugins/sfEasyGMapPlugin/trunk/lib/GMapGeocodedAddress.class.php
r16319 r16320 104 104 /** 105 105 * Returns the latitude 106 * @return integer$latitude106 * @return float $latitude 107 107 */ 108 108 public function getLat() … … 114 114 /** 115 115 * Returns the longitude 116 * @return integer$longitude116 * @return float $longitude 117 117 */ 118 118 public function getLng() plugins/sfEasyGMapPlugin/trunk/lib/GMapMarker.class.php
r16319 r16320 18 18 /** 19 19 * @param string $js_name Javascript name of the marker 20 * @param integer$lat Latitude21 * @param integer$lng Longitude20 * @param float $lat Latitude 21 * @param float $lng Longitude 22 22 * @param GMapIcon $icon 23 23 * @param GmapEvent[] array of GoogleMap Events linked to the marker … … 66 66 } 67 67 /** 68 * @return integer$lat Javascript latitude68 * @return float $lat Javascript latitude 69 69 */ 70 70 public function getLat() … … 74 74 } 75 75 /** 76 * @return integer$lng Javascript longitude76 * @return float $lng Javascript longitude 77 77 */ 78 78 public function getLng() … … 94 94 /** 95 95 * @return string Javascript code to create the marker 96 * @author Fabrice Bernhard 96 * @author Fabrice Bernhard 97 97 */ 98 98 public function getMarkerJs()