hodgesse1 / kml-samples

Automatically exported from code.google.com/p/kml-samples
0 stars 0 forks source link

spatial orientation of a polygon isn't correct shown #371

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Which products are affected?
Google Earth

What steps will reproduce the problem?
1. Take the code included below and have a look

What is the expected output or behavior? What do you see instead?
The polygon should have a decline to the north and not to the east.

What application versions (if any) are you using?
Google Earth 6.0.1.2032 (beta)
But it was in the older version (5.2.1.1588) too.

Which operating systems (and/or relevant web browsers) are affected?
Windows Vista Ultimate 6.0.6002.2 / Firefox 3.6.13

Please provide any additional information (code snippets/links) below.
Here the needed codelines:

      <Style id="BUp1">
        <LineStyle>
          <width>2.0</width>
          <color>4CE6D8AD</color>
        </LineStyle>
        <PolyStyle>
          <color>4CE6D8AD</color>
          <colorMode>normal</colorMode>
        </PolyStyle>
      </Style>

      <Placemark>
        <name>00037</name>
        <styleUrl>#BUp1</styleUrl>
        <Polygon>
          <extrude>0</extrude>
          <tesselate>0</tesselate>
          <altitudeMode>relativeToGround</altitudeMode>
          <outerBoundaryIs>
            <LinearRing>
              <coordinates>-68.154530,-22.750640,3784.702 -68.154340,-22.743720,3784.702 -68.154050,-22.737760,3836.213 -68.154230,-22.744740,3836.213 -68.154530,-22.750640,3784.702 </coordinates>
            </LinearRing>
          </outerBoundaryIs>
        </Polygon>
      </Placemark>

Original issue reported on code.google.com by M.Sch.McFly@gmail.com on 27 Dec 2010 at 6:04