return '';
}
+// https://www.openstreetmap.org/relation/123 => ['R', 123]
+// w123 => ['W', 123]
+export function identifyLinkInQuery(query) {
+ if (!query) return undefined;
+ const m = query.match(/\/(relation|way|node)\/(-?\d+)/) || query.match(/^([nwr])(-?\d+)$/i);
+ if (!m) return undefined;
+ return [m[1][0].toUpperCase(), Number(m[2])];
+}
+
export function osmLink(aPlace) {
if (!aPlace.osm_type) return '';
var sOSMType = formatOSMType(aPlace.osm_type, false);
/* 9 */ '',
/* 10 */ 'City',
/* 11 */ '',
- /* 12 */ 'Town / Village',
- /* 13 */ '',
- /* 14 */ 'Suburb',
- /* 15 */ '',
- /* 16 */ 'Street',
- /* 17 */ '',
- /* 18 */ 'Building',
- /* 19 */ '',
- /* 20 */ '',
- /* 21 */ ''
+ /* 12 */ 'Town / Borough',
+ /* 13 */ 'Village / Suburb',
+ /* 14 */ 'Neighbourhood',
+ /* 15 */ 'Locality',
+ /* 16 */ 'Major Street',
+ /* 17 */ 'Minor Street',
+ /* 18 */ 'Building'
];
return aZoomLevels;
}