@maplander/components 0.21.49 → 0.21.50
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.
- package/bundles/maplander-components.umd.js +2 -2
- package/bundles/maplander-components.umd.js.map +1 -1
- package/bundles/maplander-components.umd.min.js +1 -1
- package/bundles/maplander-components.umd.min.js.map +1 -1
- package/esm2015/lib/services/markers/markers.service.js +3 -3
- package/esm5/lib/services/markers/markers.service.js +3 -3
- package/fesm2015/maplander-components.js +2 -2
- package/fesm2015/maplander-components.js.map +1 -1
- package/fesm5/maplander-components.js +2 -2
- package/fesm5/maplander-components.js.map +1 -1
- package/package.json +1 -1
|
@@ -7569,8 +7569,8 @@ var MarkersService = /** @class */ (function () {
|
|
|
7569
7569
|
var url = 'property/';
|
|
7570
7570
|
url += this._propertyTypePipe.transform(config.propertyType, true) + "-";
|
|
7571
7571
|
url += this._offeringTypePipe.transform(config.offering, ' ').replace(/ /g, '') + "-";
|
|
7572
|
-
url += config.address.colony ? Utils.removeDiacritics(config.address.colony) + "-" : '';
|
|
7573
|
-
url += config.address.city ? Utils.removeDiacritics(config.address.city) + "-" : '';
|
|
7572
|
+
url += config.address.colony ? Utils.removeDiacritics(config.address.colony).replace(/\//g, '') + "-" : '';
|
|
7573
|
+
url += config.address.city ? Utils.removeDiacritics(config.address.city).replace(/\//g, '') + "-" : '';
|
|
7574
7574
|
url += config.propertyId;
|
|
7575
7575
|
url = Utils.removeDiacritics(url).replace(/ /g, '-').toLowerCase();
|
|
7576
7576
|
return url;
|