[GIS] Linking Geoserver WMS layer to Google Earth

geoservergoogle earthmap-servicewms

I tried with what was available in Geoserver Layer preview as kml. It gives the geom itself at higher zooms, not the image for that area.

What to do to get only the png/jpeg images from Geoserver and show it in Google Earth, over normal satellite view?

Best Answer

Instead of creating a KML file then using that to access Google Earth, you can instead add your GeoServer WMS directly as an overlay as below:

That's it

Google Earth pop-up windows showing how to add a WMS URL for use as Image Overlay

The above example use a MapServer WMS service but it's no different from a GeoServer WMS.

Let's look at the GeoServer WMS service provided by the Delaware Geological Survey

A GetCapabilities request has a URL like:

http://maps.dgs.udel.edu:80/geoserver/DGS_Surficial_and_Contact_Geology/wms?SERVICE=WMS&request=GetCapabilities&

Some example GetMap requests are:

http://maps.dgs.udel.edu/geoserver/DGS_Surficial_and_Contact_Geology/wms?service=WMS&TRANSPARENT=TRUE&version=1.3.0&request=GetMap&EXCEPTIONS=INIMAGE&FORMAT=image/png&CRS=EPSG%3A4326&BBOX=39.57931760121924,-75.79289049774037,39.784397224903465,-75.45691470533502&WIDTH=1250&HEIGHT=763&LAYERS=US-DE_DGS_100k_Surficial_Geology&STYLES=&

http://maps.dgs.udel.edu/geoserver/DGS_Surficial_and_Contact_Geology/wms?service=WMS&TRANSPARENT=TRUE&version=1.3.0&request=GetMap&EXCEPTIONS=INIMAGE&FORMAT=image/png&CRS=EPSG%3A4326&BBOX=39.57931760121924,-75.79289049774037,39.784397224903465,-75.45691470533502&WIDTH=1250&HEIGHT=763&SLD=http%3A%2F%2Fogc.bgs.ac.uk%2Fsld%2Fgeoserver-style-test-no-named-style1.sld&layers=US-DE_DGS_100k_Surficial_Geology&

You can click on these GetMap links and they will show you some maps in your browser.

When we want to see the the Delaware maps in Google earth, using the above procedure, we just specify the part of the above URLS up to and including the question mark. This part of the URL is known as the service end point.

That is, in this example:

http://maps.dgs.udel.edu/geoserver/DGS_Surficial_and_Contact_Geology/wms?

When we add this URL to the dialogue and then select the Geology layer we get the below map within Google Earth.

Delaware geology in Google Earth served by GeoServer WMS