Changeset 16304
- Timestamp:
- 03/13/09 16:47:07 (4 years ago)
- Files:
-
- plugins/sfEasyGMapPlugin/trunk/README (modified) (1 diff)
- plugins/sfEasyGMapPlugin/trunk/package.xml (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/sfEasyGMapPlugin/trunk/README
r16301 r16304 125 125 126 126 // parameters: zoom level, lat, lng, options 127 $this->gMap = new GMap(4,45,8,array('control'=>'new google.maps.SmallMapControl()')); 127 $this->gMap = new GMap( 128 array( 129 'zoom'=>4, 130 'center_lat'=>45, 131 'center_lng'=>8, 132 'control'=>'new google.maps.SmallMapControl()' 133 ) 134 ); 128 135 129 136 // some places in the world plugins/sfEasyGMapPlugin/trunk/package.xml
r16301 r16304 18 18 </contributor> 19 19 <date>2009-03-13</date> 20 <time>1 0:34:00</time>20 <time>16:00:00</time> 21 21 <version> 22 <release> 0.9.4</release>23 <api> 0.9.4</api>22 <release>1.0.0</release> 23 <api>1.0.0</api> 24 24 </version> 25 25 <stability> 26 <release> beta</release>27 <api> beta</api>26 <release>stable</release> 27 <api>stable</api> 28 28 </stability> 29 29 <license uri="http://www.symfony-project.org/license">MIT license</license> … … 38 38 </dir> 39 39 <dir name="lib"> 40 <dir name="external"> 41 <!-- helpers --> 42 <file role="data" name="RenderTag.class.php" /> 43 </dir> 40 44 <dir name="helper"> 41 45 <!-- helpers --> … … 43 47 </dir> 44 48 <file role="data" name="GMap.class.php" /> 49 <file role="data" name="GMapBounds.class.php" /> 50 <file role="data" name="GMapCoord.class.php" /> 51 <file role="data" name="GMapEvent.class.php" /> 52 <file role="data" name="GMapGeocodedAddress.class.php" /> 53 <file role="data" name="GMapIcon.class.php" /> 45 54 <file role="data" name="GMapMarker.class.php" /> 46 <file role="data" name="GMapIcon.class.php" />47 <file role="data" name="GMapEvent.class.php" />48 <file role="data" name="GMapGeocodedAddress.class.php" />49 55 </dir> 50 56 <dir name="modules"> 51 57 <dir name="sfEasyGMapPlugin"> 52 58 <file role="data" name="actions/actions.class.php" /> 59 <file role="data" name="config/view.yml" /> 53 60 <file role="data" name="templates/sample1Success.php" /> 61 <file role="data" name="templates/indexSuccess.php" /> 54 62 </dir> 55 63 </dir> 64 <dir name="test"> 65 <dir name="bootstrap"> 66 <!-- bootstrap --> 67 <file role="data" name="unit.php" /> 68 <file role="data" name="functional.php" /> 69 </dir> 70 <dir name="unit"> 71 <!-- unit --> 72 <file role="data" name="GMapBoundsTest.php" /> 73 <file role="data" name="GMapCoordTest.php" /> 74 </dir> 75 </dir> 56 76 <dir name="web"> 77 <dir name="css"> 78 <!-- images --> 79 <file role="data" name="sfEasyGMapPlugin.css" /> 80 </dir> 57 81 <dir name="images"> 58 82 <!-- images --> 59 83 <file role="data" name="nice_icon.png" /> 60 </dir> 84 </dir> 61 85 <dir name="js"> 62 86 <!-- javascripts --> … … 98 122 </notes> 99 123 </release> 124 <release> 125 <version> 126 <release>1.0.0</release> 127 <api>1.0.0</api> 128 </version> 129 <stability> 130 <release>beta</release> 131 <api>beta</api> 132 </stability> 133 <license uri="http://www.symfony-project.org/license">MIT license</license> 134 <notes> 135 * WARNING: backwards-compatibility is broken 136 * The GMap constructor now takes an option array as first parameter 137 * added some unit tests 138 * added some very interesting functions concerning bounds : Smallest bound containing coords, homthety transformation, zoomOut, Propel criteria "In bounds" 139 * added some very interesting functions concerning coordinates : you can now transform lat/lng into Google Map' pixels coordinates system and vice-versa. This enables one to calculate the bounds around a coordinate for example, knowing only the Google Map's height/width in pixels 140 </notes> 141 </release> 100 142 </changelog> 101 143 </package>