<!DOCTYPE html> <html> <head> <meta name="viewport" content="initial-scale=1.0, user-scalable=no"> <meta charset="utf-8"> <title>KML feature details</title> <style> html, body, #map-canvas { height: 100%; margin: 0px; padding: 0px } </style> <script src=" https://maps.googleapis.com/maps/api/js?key=AIzaSyBvci9zp235FdVB8nfXJhlFN73bFFaB3s4&sensor=false "></script> <script> function initialize() { var myLatlng = new google.maps.LatLng(28.0667, -82.10222); var mapOptions = { zoom: 12, center: myLatlng }; var map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions); var kmlLayer = new google.maps.KmlLayer({ url: 'http://website..............kml', suppressInfoWindows: true, map: map }); google.maps.event.addListener(kmlLayer, 'click', function(kmlEvent) { var text = kmlEvent.featureData.description; showInContentWindow(text); }); function showInContentWindow(text) { var sidediv = document.getElementById('content-window'); sidediv.innerHTML = text; } } google.maps.event.addDomListener(window, 'load', initialize); </script> </head> <body> <div id="map-canvas" style="width:79%; height:100%; float:left"></div> <div id="content-window" style="width:19%; height:100%; float:left"></div> </body> </html>
-- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v2" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-maps-api+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.