Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am overlaying a .png image and it appears to have missing data. The areas of missing data change based on how I zoom in or out and angle the screen. There is no missing data in my png image though. My KML code is as follows:

<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2">
    <Folder>
        <name>ACAM Data</name>
        <GroundOverlay>
          <name>ACAM Data at ACAM Resolution</name>
          <Icon>
             <href>/Users/mlsilve1/Documents/ACAM_Travis.png</href>
          </Icon>
          <altitudeMode>clampToGround</altitudeMode>
          <LatLonBox>
             <north>37.7000</north>
             <south>36.7000</south>
             <east>-75.8000</east>
             <west>-77.4000</west>
             <rotation>0.00000</rotation>
          </LatLonBox>
        </GroundOverlay>
    </Folder>
</kml>
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.