Projet

Général

Profil

0001-geolocation-add-support-for-footways-33523.patch

Frédéric Péters, 29 mai 2019 07:13

Télécharger (977 octets)

Voir les différences:

Subject: [PATCH] geolocation: add support for footways (#33523)

 wcs/qommon/static/js/qommon.geolocation.js | 2 ++
 1 file changed, 2 insertions(+)
wcs/qommon/static/js/qommon.geolocation.js
31 31
      var street = data.address.road;
32 32
      if (!street && data.address.pedestrian) {
33 33
        street = data.address.pedestrian;
34
      } else if (!street && data.address.footway) {
35
        street = data.address.footway;
34 36
      }
35 37
      geoloc_prefill('road', street);
36 38
      if (street && data.address.house_number) {
37
-