• # Correction

    Posté par . En réponse à la dépêche Comment créer une carte Open Street Map. Évalué à 3.

    Dans ton dernier code JS:

    if (feature.attributes.addrfull = undefined) {
    
    

    devrait être:

    if (feature.attributes.addrfull === undefined) {
    
    

    ou:

    if (!feature.attributes.addrfull) {