Is there a way make pop out bubbles in the KML Files larger? At the moment I have the information displayed. But it's not clean. It'd look cleaner if all the bold items were on the left. Kind of confused because if I play around with the width, which makes sense, Nothing changes. Thoughts? Suggestions to add?
#Define the Objects within the Plot Line Chart
def PlotLineChart(myKml, latList, lonList, heightList=[], name="", descriptionList="", color="", width=5):
"""
Plot Line Chart
"""
descriptionString = ''
for desc in descriptionList:
descriptionString += (desc + '\n')
print(descriptionString)
ls = myKml.newlinestring(
name=name,
description=descriptionString
)
coords = []
if len(heightList) == 0:
for (lat, lon) in zip(latList, lonList):
coords.append((lon, lat))
else:
for (lat, lon, height) in zip(latList, lonList, heightList):
coords.append((lon, lat, height))
ls.coords = coords
ls.extrude = 1
ls.altitudemode = simplekml.AltitudeMode.relativetoground
ls.style.linestyle.width = width
ls.style.linestyle.color = GetColorObject(color)