Projet

Général

Profil

0001-geolocation-add-support-for-cycleway-way-type-35014.patch

Frédéric Péters, 23 juillet 2019 17:37

Télécharger (984 octets)

Voir les différences:

Subject: [PATCH] geolocation: add support for "cycleway" way type (#35014)

 wcs/qommon/static/js/qommon.geolocation.js | 2 ++
 1 file changed, 2 insertions(+)
wcs/qommon/static/js/qommon.geolocation.js
35 35
        street = data.address.footway;
36 36
      } else if (!street && data.address.path) {
37 37
        street = data.address.path;
38
      } else if (!street && data.address.cycleway) {
39
        street = data.address.cycleway;
38 40
      } else if (!street && data.address.park) {
39 41
        street = data.address.park;
40 42
      }
41
-