public
Description: Fork of http://rubyforge.org/projects/kmlr/
Homepage:
Clone URL: git://github.com/schleyfox/ruby_kml.git
ruby_kml / examples / melbourne-stations.kml
100644 19 lines (18 sloc) 0.454 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://earth.google.com/kml/2.1">
  <Folder>
    <name>Melbourne Stations</name>
    <Placemark>
      <name>Flinders St</name>
      <Point>
        <coordinates>144.966811,-37.818078</coordinates>
      </Point>
    </Placemark>
    <Placemark>
      <name>Southern Cross</name>
      <Point>
        <coordinates>144.952417,-37.818358</coordinates>
      </Point>
    </Placemark>
  </Folder>
</kml>