Hi everyone,<br><br>I&#39;ve spent the better part of today scouring the internet for documentation and help on the tile mode present in mapserver, but I couldn&#39;t find an answer to my problem, so please forgive me if I&#39;m missing some obvious documentation some where...<br>
<br>I am attempting to show some GeoTIFFs (from here: <a href="ftp://geoftp.ibge.gov.br/mapas/ortofoto/">ftp://geoftp.ibge.gov.br/mapas/ortofoto/</a>). My research says they&#39;re in epsg:31984.<br><br>I&#39;m trying to use MapServer&#39;s tile mode to display them on a Google Map API instance, but can&#39;t seem to get any of the images to show up.<br>
<br>Also, why am I required to give a PROJECTION statement as a child to the MAP statement (what I assume is the &quot;viewing projection&quot;) if the tile mode is just going to reproject to spherical mercator?<br><br>My .map file is below.<br>
<br>Thanks!<br><br>MAP<br>        NAME GMAP_TILE<br>        STATUS ON<br><br>        PROJECTION &quot;init=epsg:31984&quot; END<br><br>        IMAGECOLOR 192 192 192<br>        IMAGEQUALITY 95<br>        IMAGETYPE png<br>
<br>        OUTPUTFORMAT<br>                NAME png<br>                DRIVER &#39;GD/PNG&#39;<br>                TRANSPARENT ON<br>        END<br><br>        LAYER  <br>                NAME brazil<br>                TYPE raster<br>
                DATA &quot;/var/www/map/2414-1-SO.tif&quot;<br>                STATUS ON<br>                PROJECTION &quot;init=epsg:31984&quot; END<br>        END<br>END<br>