- def telephone_link(_key, value)
- # does it look like a phone number? eg "+1 (234) 567-8901 " ?
- return nil unless value =~ /^\s*\+[\d\s\(\)\/\.-]{6,25}\s*$/
-
- # remove all whitespace instead of encoding it http://tools.ietf.org/html/rfc3966#section-5.1.1
- # "+1 (234) 567-8901 " -> "+1(234)567-8901"
- valueNoWhitespace = value.gsub(/\s+/, '')
-
- "tel:#{valueNoWhitespace}"
+ def telephone_links(_key, value)
+ # Does it look like a global phone number? eg "+1 (234) 567-8901 "
+ # or a list of alternate numbers separated by ;
+ #
+ # Per RFC 3966, this accepts the visual separators -.() within the number,
+ # which are displayed and included in the tel: URL, and accepts whitespace,
+ # which is displayed but not included in the tel: URL.
+ # (see: http://tools.ietf.org/html/rfc3966#section-5.1.1)
+ #
+ # Also accepting / as a visual separator although not given in RFC 3966,
+ # because it is used as a visual separator in OSM data in some countries.
+ if value =~ %r{^\s*\+[\d\s\(\)/\.-]{6,25}\s*(;\s*\+[\d\s\(\)/\.-]{6,25}\s*)*$}
+ return value.split(";").map do |phone_number|
+ # for display, remove leading and trailing whitespace
+ phone_number = phone_number.strip
+
+ # for tel: URL, remove all whitespace
+ # "+1 (234) 567-8901 " -> "tel:+1(234)567-8901"
+ phone_no_whitespace = phone_number.gsub(/\s+/, "")
+ { :phone_number => phone_number, :url => "tel:#{phone_no_whitespace}" }
+ end
+ end
+ nil