def InsereKML(i):
aux = str(df['GRUPOS'].loc[i]) + ' (' +str(round(df['efetivo'].loc[i],1)) + ')'
pnt = mapa.newpoint(name=aux, coords=[(df['longitude'].loc[i],df['latitude'].loc[i])])
pnt.style.labelstyle.scale = 0.75
if str(round(df['efetivo'].loc[i],1)) == '2.0':
pnt.style.iconstyle.icon.href = 'http://maps.google.com/mapfiles/kml/shapes/police.png'
pnt.style.labelstyle.color = kml.Color.red
else:
pnt.style.iconstyle.icon.href = 'http://maps.google.com/mapfiles/kml/shapes/track.png'