feat(vector-map): add drawing compartments
2 unresolved threads
2 unresolved threads
Closes MIN-27
Merge request reports
Activity
Filter activity
requested review from @KonradAt
added 1 commit
- 4d6757ec - feat(vector-map): add text hiding for font size <= 4
added 1 commit
- ad4c9c00 - refactor(vector-map): change font units from px to pt
added 1 commit
- 20f3c4ef - feat(vector-map): add shape option for modelElementSchema
104 this.fontSize = fontSize; 105 this.nameX = nameX; 106 this.nameY = nameY; 107 this.nameWidth = nameWidth; 108 this.nameHeight = nameHeight; 109 this.fontColor = fontColor; 110 this.nameVerticalAlign = nameVerticalAlign; 111 this.nameHorizontalAlign = nameHorizontalAlign; 112 this.fillColor = fillColor; 113 this.borderColor = borderColor; 114 this.pointToProjection = pointToProjection; 115 } 116 117 protected abstract createPolygons(): void; 118 119 protected initializeText(): void { changed this line in version 5 of the diff
125 y: this.nameY, 126 width: this.nameWidth, 127 height: this.nameHeight, 128 color: rgbToHex(this.fontColor), 129 zIndex: this.zIndex, 130 verticalAlign: this.nameVerticalAlign, 131 horizontalAlign: this.nameHorizontalAlign, 132 pointToProjection: this.pointToProjection, 133 }); 134 this.styles.push(textStyle); 135 this.polygonsTexts.push(this.text); 136 this.polygons.push(new Polygon([[textCoords, textCoords]])); 137 } 138 } 139 140 protected initializeMultiPolygonFeature(mapInstance: MapInstance): void { changed this line in version 5 of the diff
added 6 commits
-
07d9d996...38507a53 - 5 commits from branch
feat/MIN-35-hypothetical-option
- 8061187f - Merge branch 'feat/MIN-35-hypothetical-option' of...
-
07d9d996...38507a53 - 5 commits from branch
mentioned in commit ada6f898
Please register or sign in to reply