You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// For address features, `text` is just the street name. Look through the fully-qualified address to determine whether to put the house number before or after the street name.
409
-
iflet houseNumber = address, scope ==.address {
410
-
letstreetName= text
411
-
letreversedAddress="\(streetName)\(houseNumber)"
412
-
if qualifiedNameComponents.contains(reversedAddress){
413
-
return reversedAddress
414
-
}else{
415
-
return"\(houseNumber)\(streetName)"
416
-
}
405
+
@objcopenvarformattedName:String{
406
+
lettext= super.name
407
+
// For address features, `text` is just the street name. Look through the fully-qualified address to determine whether to put the house number before or after the street name.
408
+
iflet houseNumber = address, scope ==.address {
409
+
letstreetName= text
410
+
letreversedAddress="\(streetName)\(houseNumber)"
411
+
if qualifiedNameComponents.contains(reversedAddress){
0 commit comments