I am working with google maps and using geoxml3 to parse my kml string and its showing on Google maps , now I want to get lines info like number of lines in kml string and its location can i get the info of lines drawn by parsed kml string?
html
<div id="map" style="height: 720px"></div>
app.ts
function parseKml() {
var myParser = new geoXML3.parser({map: map});
myParser.parseKmlString(kmlString);
}