1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://earth.google.com/kml/2.1">
<Document>
<name>KmlFile</name>
<StyleMap id="parcel">
<Pair>
<key>normal</key>
<styleUrl>#parcelNormal</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#parcelHighlight</styleUrl>
</Pair>
</StyleMap>
<Style id="parcelNormal">
<IconStyle>
<scale>0.8</scale>
<Icon>
<href>http://maps.google.com/mapfiles/kml/pal4/icon56.png</href>
</Icon>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
<LineStyle>
<color>ff4090ff</color>
<width>10</width>
</LineStyle>
<PolyStyle>
<color>00000000</color>
</PolyStyle>
</Style>
<Style id="parcelHighlight">
<IconStyle>
<scale>0.85</scale>
<Icon>
<href>http://maps.google.com/mapfiles/kml/pal4/icon48.png</href>
</Icon>
</IconStyle>
<LabelStyle>
<scale>0.9</scale>
</LabelStyle>
<LineStyle>
<color>ff07cefe</color>
<width>30</width>
</LineStyle>
<PolyStyle>
<color>5007cefe</color>
</PolyStyle>
</Style>
<Placemark>
<name>238 Franklyn St.</name>
<styleUrl>#parcel</styleUrl>
<MultiGeometry>
<Point>
<coordinates>-123.938788334,49.1646409443,0</coordinates>
</Point>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
-123.93904811,49.16434558280001,0 -123.939274779,49.16457225540001,0 -123.939105984,49.1646449658,0 -123.93924107,49.1647800536,0 -123.938876261,49.16493630590001,0 -123.938424057,49.1646143977,0 -123.93904811,49.16434558280001,0 </coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
</MultiGeometry>
</Placemark>
</Document>
</kml>
|