<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>test/kml/point_test.rb</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -3,9 +3,11 @@ Sweet if you want to place markers, overlays, and other awesome things over a go
 
 h2. Examples
 
+See @test/kml_file_test.rb@ for more examples
+
 h3. Placing markers on a map
 
-&lt;pre&gt;&lt;code&gt;
+&lt;pre&gt;&lt;code&gt;$LOAD_PATH.unshift('path/to/ruby_kml/lib') # Needed until this gets gemmified
 require 'kml'
 
 kml = KMLFile.new
@@ -16,7 +18,7 @@ folder = KML::Folder.new(:name =&gt; 'Melbourne Stations')
 ].each do |name, lat, lng|
   folder.features &lt;&lt; KML::Placemark.new(
     :name =&gt; name, 
-    :geometry =&gt; KML::Point.new(:coordinates =&gt; [lng, lat])
+    :geometry =&gt; KML::Point.new(:coordinates =&gt; {:lat =&gt; lat, :lng =&gt; lng})
   )
 end
 kml.objects &lt;&lt; folder</diff>
      <filename>README.textile</filename>
    </modified>
    <modified>
      <diff>@@ -29,8 +29,10 @@ module KML
         end
       when Array
         @coordinates = c
+      when Hash
+        @coordinates = [:lng, :lat, :alt].collect {|attr| c[attr]}.compact
       else
-        raise ArgumentError, &quot;Coordinates must be either a String or an Array&quot;
+        raise ArgumentError, &quot;Coordinates must be either a String, Hash or an Array&quot;
       end
     end
     
@@ -42,4 +44,4 @@ module KML
     end
     
   end
-end
\ No newline at end of file
+end</diff>
      <filename>lib/kml/point.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>dea36d9e6dee6ea83b514816622c28950c48572a</id>
    </parent>
  </parents>
  <author>
    <name>Xavier Shay</name>
    <email>xavier@rhnh.net</email>
  </author>
  <url>http://github.com/schleyfox/ruby_kml/commit/a13040cb9825932a4bc24689ae67ad65f7c7693a</url>
  <id>a13040cb9825932a4bc24689ae67ad65f7c7693a</id>
  <committed-date>2008-06-06T23:49:28-07:00</committed-date>
  <authored-date>2008-06-06T23:49:28-07:00</authored-date>
  <message>Allow specification of Point coords as a hash so you don't have to remember if lng or lat comes first</message>
  <tree>d45c8928bce9c8e3e528733816bb63115dde5ae0</tree>
  <committer>
    <name>Xavier Shay</name>
    <email>xavier@rhnh.net</email>
  </committer>
</commit>
