首页 / 浏览问题 / WebGIS / 问题详情
webgis标签专题图改变文本位置时,网页渲染没反应
10EXP 2020年11月24日
style1 = new SuperMap.ServerTextStyle({
                fontHeight: 4,
                foreColor: new SuperMap.ServerColor(100, 20, 50),
                sizeFixed: true,
                bold: true,
                align:'TOPLEFT'
            });
            console.log(style1.align);
            style2 = new SuperMap.A({
                fontHeight: 4,
                foreColor: new SuperMap.ServerColor(0, 255, 0),
                sizeFixed: true,
                bold: true,
                align:SuperMap.TextAlignment.TOPLEFT
            });

用align属性设置位置时,网页没变化

1个回答

你好,请问您的需求是想调整标签的对齐方式还是标签中文本的对齐方式呢,您这个style是设置文本的。
2,842EXP 2020年11月25日
就是想改变标签的锚点
...