Picture marker symbology displays clipped in ArcGIS API for JavaScript.
上次发布: March 19, 2019ArcGIS API for JavaScript
漏洞 ID 编号
BUG-000117357
已提交
October 10, 2018
上次修改时间
August 2, 2025
适用范围
ArcGIS API for JavaScript
找到的版本
4.9
操作系统
N/A
操作系统版本
N/A
修正版本
4.11
状态
Fixed
此漏洞已得到修复。 有关详细信息,请参阅“版本修复”和“其他信息”(如果适用)。
附加信息
It is documented that the maximum size limit is 120px. The symbols in this app are 200px (150pt). Switch out the the app to read as follows:
var rendererSVG = {
type: "simple",
symbol: {
type: "picture-marker",
url: "https://static.arcgis.com/images/Symbols/Shapes/BlackStarLargeB.png",
contentType: "image/svg",
width: "120px",
height: "120px",
}
};