I created my first Google Maps API with png overlays (thanks @andresf for the help).
This map has several png ground overlays adjacent to each other, and they can be seen at http://www.earthstation.mobi/coverage.htm
Question: How to set transparency (transparency?) On each overlay so that I can see map details under overlay? I do not need to configure this from a web page, just pre-set the encoding in the script.
Code for the above page:
<!DOCTYPE html "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"/> <title>Earthstation WIMAX Coverage</title> <script src="http://maps.googleapis.com/maps/api js?key=AIzaSyAGbZjXr2wr7dT2P3O5pNo5wvVF3JiaopU&sensor=false" type="text/javascript"></script> <script type="text/javascript"> function initialize() { var myOptions = { center: new google.maps.LatLng(-18.975750, 32.669184), zoom: 13, mapTypeId: google.maps.MapTypeId.HYBRID }; var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions); </script> </head> <body onload="initialize()"> <div id="map_canvas" style="width: 1000px; height: 600px"></div> </body> </html>
Thanks for waiting Brian Zimbabwe
source share