At the moment I am using the click event to display an info window above placeholders in a googlemap KML layer
google.maps.event.addListener(kmlLayer, 'click', function(kmlEvent) {
showInContentWindow(kmlEvent.latLng, kmlEvent.featureData.description);
});
What I would like to do is be able to permanently display the placeholder ID or Name (or other identifying info) above each placeholder without clicking. I've looked at the FAQ and can see that you can't have a description open when the map opens: https://developers.google.com/kml/faq#balloonopenfile
I am wondering if there is a way around it, or if it is possible to trigger it with onFocus or another listener instead of click?
I have no control of the KML file, so it has to be done via the page