Geo server gives the option to display the layers in different image formats (gif, GPEG, png).
Is there any way to do this but putting a layer of background google maps?
The documentation says to make a html file to display google maps, but I do it in a container <DIV>, and what I need is to see it as an image.
thank
---
<!DOCTYPE html>
<html>
<head>
<title>Simple Map</title>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<style>
html, body, #map-canvas {
height: 100%;
margin: 0px;
padding: 0px
}
</style>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
<script>
var map;
function initialize() {
var mapOptions = {
mapTypeId: google.maps.MapTypeId.TERRAIN,
zoom: 5,
center: new google.maps.LatLng(23.453165, -101.81465)
};
map = new google.maps.Map(document.getElementById('map-canvas'),
mapOptions);
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
</head>
<body>
<div id="map-canvas"></div>
</body>
</html>
---