[GIS] Can raster files from ArcGIS for Desktop be visualized in Google Maps

arcgis-desktopgoogle-maps-apiraster

I have raster files created using ArcGIS (Desktop application). On the other side I develop an application using google maps. Can I visualize those raster files somehow on google maps API?

Best Answer

Any kind of rasters can be visualised using Google Maps API. Please, visit:

If you look at the code, first, it seems to be easy to adapt it for your rasters, but you'll see it is not at all a trivial task.

You need to build the map cache tiles for each individual raster you want to display. See: What is map caching?

I doubt that you will succeed to fulfill this task without an access to a Arcgis Server.

Once this step was completed successfully, you'll need to calculate the latitude and longitude bounds for each individual tiles, for all desired zoom levels, and to rename them accordingly. Fortunately there is an online tool from MapTiler.

Finally, all the tiles must be stored on a web server, in order to be accessed and displayed on Google Maps.