@maplander/components 0.21.50 → 0.21.52

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7565,12 +7565,16 @@ var MarkersService = /** @class */ (function () {
7565
7565
  * @return {?}
7566
7566
  */
7567
7567
  function (config) {
7568
+ /** @type {?} */
7569
+ var colony = config.address.colony ? config.address.colony.replace(/[\])}[{(]/g, '') : '';
7570
+ /** @type {?} */
7571
+ var city = config.address.city ? config.address.city.replace(/[\])}[{(]/g, '') : '';
7568
7572
  /** @type {?} */
7569
7573
  var url = 'property/';
7570
7574
  url += this._propertyTypePipe.transform(config.propertyType, true) + "-";
7571
7575
  url += this._offeringTypePipe.transform(config.offering, ' ').replace(/ /g, '') + "-";
7572
- url += config.address.colony ? Utils.removeDiacritics(config.address.colony).replace(/\//g, '') + "-" : '';
7573
- url += config.address.city ? Utils.removeDiacritics(config.address.city).replace(/\//g, '') + "-" : '';
7576
+ url += colony ? colony.replace(/\//g, '-') + "-" : '';
7577
+ url += city ? city.replace(/\//g, '-') + "-" : '';
7574
7578
  url += config.propertyId;
7575
7579
  url = Utils.removeDiacritics(url).replace(/ /g, '-').toLowerCase();
7576
7580
  return url;