Plugin Directory

Changeset 3472147


Ignore:
Timestamp:
03/01/2026 04:10:53 PM (5 weeks ago)
Author:
fandevelop
Message:

Suppression cercle de recherche

File:
1 edited

Legend:

Unmodified
Added
Removed
  • fand-pickup-points-ultimate-edition-for-wcfm/tags/1.0.1/assets/js/pickup-map-script.js

    r3472086 r3472147  
    348348
    349349        // OPTIONNEL : Dessiner le cercle bleu du rayon sur la carte
    350         searchCircle = L.circle([rLat, rLng], {
    351             color: '#0073aa',
    352             fillColor: '#0073aa',
    353             fillOpacity: 0.15,
    354             weight: 2,
    355             radius: rRange * 1000 // Conversion Km en Mètres
    356         }).addTo(map);
     350        if (rRange < 1) {
     351            searchCircle = L.circle([rLat, rLng], {
     352                color: '#0073aa',
     353                fillColor: '#0073aa',
     354                fillOpacity: 0.15,
     355                weight: 2,
     356                radius: rRange * 1000 // Conversion Km en Mètres
     357            }).addTo(map);
     358        }
    357359
    358360        initialUpdate();
Note: See TracChangeset for help on using the changeset viewer.