Hi everyone,<br><br>I've spent the better part of today scouring the internet for documentation and help on the tile mode present in mapserver, but I couldn't find an answer to my problem, so please forgive me if I'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're in epsg:31984.<br><br>I'm trying to use MapServer's tile mode to display them on a Google Map API instance, but can'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 "viewing projection") 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 "init=epsg:31984" END<br><br> IMAGECOLOR 192 192 192<br> IMAGEQUALITY 95<br> IMAGETYPE png<br>
<br> OUTPUTFORMAT<br> NAME png<br> DRIVER 'GD/PNG'<br> TRANSPARENT ON<br> END<br><br> LAYER <br> NAME brazil<br> TYPE raster<br>
DATA "/var/www/map/2414-1-SO.tif"<br> STATUS ON<br> PROJECTION "init=epsg:31984" END<br> END<br>END<br>