local pontos = {
    ['aeroporto'] = 'Airplane silhouette.svg',
    ['área protegida'] = 'Green pog.svg',
    ['banheiros'] = 'Blue pog.svg',
    ['barragem'] = 'Arch dam 12x12 ne.svg',
    ['batalha'] = 'Legenda miejsce bitwy.svg',
    ['edifício'] = 'Solid blue.svg',
    ['castelo'] = 'Gfi-set01-castle1.png',
    ['cidade'] = 'City locator 4.svg',
    ['chaminê'] = 'Factory-fontawesomish.svg',
    ['col'] = 'Mountain pass 12x12 ne.svg',
    ['cratera'] = 'Redpoint.svg',
    ['igreja'] = 'Gfi-set01-church1.png',
    ['gare'] = 'HR icon.png',
    ['gruta'] = 'Gfi-set01-cave.svg ',
    ['industrial'] = 'Factory.svg',
    ['hospital'] = 'Sign hospital.svg',
    ['lago'] = 'Blue pog.svg',
    ['localidade'] = 'Red pog.svg',
    ['mina'] = 'Mining symbol.svg',
    ['montanha'] = 'TriangleArrow-Up.svg',
    ['monumento'] = 'Solid blue.svg',
    ['mosque'] = 'Gfi-set01-mosque1.png',
    ['naufrágio'] = 'NChart-Symbol INT Wreck.svg',
    ['phare'] = 'Legenda latarnia.svg',
    ['ponte'] = 'Bridge 12x12 ne.svg',
    ['porto'] = 'Legenda port.svg',
    ['pirâmide'] = 'Gfi-set01-pyramide.png',
    ['refúgio'] = 'RedHut.svg',
    ['site'] = 'Point rouge.gif',
    ['sítio arquelógico'] = 'Gfi-set01-archaeology.png',
    ['estação de esqui'] = 'Steel pog.svg',
    ['sinagoga'] = 'Gfi-set01-synagogue1.png',
    ['torre'] = 'Gfi-set01-tower1.png',
    ['usina'] = 'Factory.svg',
    ['vila'] = 'City locator 4.svg',
    ['vulcão'] = 'Fire.svg',
    
    default = 'Red pog.svg',
}

for i = 0, 31 do
    -- ajout de tous les point City locator X, en number et en string
    pontos[ i ] = 'City locator ' .. i .. '.svg'
    pontos[ tostring( i ) ] = 'City locator ' .. i .. '.svg'
end

return pontos