Changeset 3200 for trunk/modules
- Timestamp:
- 07/23/2008 11:47:30 AM (4 months ago)
- Files:
-
- 1 modified
-
trunk/modules/gmaps/libraries/Gmap_Marker.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/gmaps/libraries/Gmap_Marker.php
r3199 r3200 26 26 * Create a new GMap marker. 27 27 * 28 * @param float latitude 29 * @param float longitude 30 * @param string HTML of info window 28 * @param float $lat latitude 29 * @param float $lon longitude 30 * @param string $html HTML of info window 31 * @param array $options marker options 31 32 * @return void 32 33 */ … … 47 48 foreach ($options as $option => $value) 48 49 { 50 // Set marker options 49 51 if (in_array($option, $this->valid_options, true)) 50 52 $this->options[$option] = $value;
