I have the below code in javacript using geoXML3 which successfully loads/parses and displays the KML file shown.
var geoXml = new geoXML3.parser({map: map, singleInfoWindow: true});
geoXml.parse('/myapp/resources/kml/fileone.kml');
The /myapp/resources/kml/
folder/uri however holds many KML files. How I can load/parse them all at once to display them all on the google map at once?
I can't simply name them all because they're going to be different for different installations of the application. Wildcard doesn't seem to work;
var geoXml = new geoXML3.parser({map: map, singleInfoWindow: true});
geoXml.parse('/myapp/resources/kml/*.kml');