您的位置:首页 > Web前端

解决arcgis api自定义给FeatureLayer添加文字标注(label)

2018-03-23 22:49 555 查看
问题描述:arcgis api添加文字标注,一般的,由TextSymbol控制文字标注的样式,再结合LabelClass中设置的字段信息,直接由featurelayer.setLabelingInfo([ labelclass ]);函数将sde中的字段信息在地图页面上面标注出来。但这种方法显示的label只能简单显示字段信息,不能动态显示不在图层字段而是经过关联其他表格查询出来的动态信息
解决:
1、思路:
        放弃setLabelingInfo()函数吧(虽然它很努力了,但你们不合适╮( ̄▽ ̄)╭)
        要用添加text类型graphic到graphiclayer的方式添加自定义的文字标注,这个过程中,用后台查询标注内容,用featureLayer中的geomytry(点线面都可以)确定图层内每个要素标注的位置。



        代码如下:             //创建绘制图层graphiclayer
var graphicsLayer = new GraphicsLayer();
//创建文字内容
var textSym = new TextSymbol("Hello World");
//添加为每个文字graphic添加位置、文字内容
var graphicText = new Graphic(featureLayer.graphics[0].geometry,textSym);
//将graphic加入图层
graphicsLayer.add(graphicText);
//map添加graphiclayer图层
map.addLayer(graphicsLayer);

另注:textsymbol标注的换行问题!!
        "\n"、"\r"、<br/>都试过了,是不行的!!

        找到了结局方法,链接如下:www.cnblogs.com/wandergis/p/4615802.html

        首先,下载这段js文件,命名为esri.symbol.MultiLineTextSymbol.js
require(["esri/layers/LabelLayer"], function(ll)
{
if( typeof esri.layers.LabelLayer.prototype._addLabel == 'function' )
{
esri.layers.LabelLayer.prototype._addLabel2 = esri.layers.LabelLayer.prototype._addLabel;
esri.layers.LabelLayer.prototype._addLabel = function(a,b,c,e,g,k,m)
{
// replace \n by <br>
a = a.replace(/\n/g, "<br />");
this._addLabel2(a,b,c,e,g,k,m);
}
}
});

require(["esri/symbols/TextSymbol", "dojox/gfx/svg"], function(ts, svg)
{
if( typeof dojox.gfx.svg.Text.prototype.setShape == 'function' )
{
dojox.gfx.svg.Text.prototype.setShape = function(p)
{
this.shape = dojox.gfx.makeParameters(this.shape, p);
this.bbox = null;
var r = this.rawNode, s = this.shape;
r.setAttribute("x", s.x);
r.setAttribute("y", s.y);
r.setAttribute("text-anchor", s.align);
r.setAttribute("text-decoration", s.decoration);
r.setAttribute("rotate", s.rotated ? 90 : 0);
r.setAttribute("kerning", s.kerning ? "auto" : 0);
r.setAttribute("text-rendering", "optimizeLegibility");

while(r.firstChild)
r.removeChild(r.firstChild);

if(s.text)
{
var texts = s.text.replace(/<br\s*\/?>/ig, "\n").split("\n");
var lineHeight = 1.1 * parseInt(document.defaultView.getComputedStyle(r, "").getPropertyValue("font-size"), 10);
if( isNaN(lineHeight) || !isFinite(lineHeight) )
lineHeight = 15;

for(var i = 0, n = texts.length; i < n; i++)
{
var tspan = (document.createElementNS ? document.createElementNS(dojox.gfx.svg.xmlns.svg, "tspan") : document.createElement("tspan"));
tspan.setAttribute("dy", i ? lineHeight : -(texts.length-1)*lineHeight/2);
tspan.setAttribute("x", s.x);
tspan.appendChild((dojox.gfx.useSvgWeb ? document.createTextNode(texts[i], true) : document.createTextNode(texts[i])));
r.appendChild(tspan);
}
}

return this;
}
}
});        然后在html中这样引用,就可以使用\n来换行了<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1,user-scalable=no"/>
<title>Simple Map</title>
<link rel="stylesheet" href="https://js.arcgis.com/3.13/esri/css/esri.css">
<style>
html, body, #map {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}

body {
background-color: #FFF;
overflow: hidden;
font-family: "Trebuchet MS";
}
</style>
<script src="https://js.arcgis.com/3.13/"></script>
<script src="./esri.symbol.MultiLineTextSymbol.js"></script>
<script>
var map;
require(["esri/map",
"esri/symbols/TextSymbol",
"esri/graphic",
"esri/geometry/Point",
"dojo/domReady!"], function (Map, TextSymbol, Graphic, Point) {
map = newMap("map", {basemap: "topo", center: [0, 0], zoom: 4, sliderStyle: "small"});
map.on("load", function () {
map.graphics.add(newGraphic(newPoint(0, 0), newTextSymbol("Multi-Line \n Text"), {}));
});
});
</script>
</head>
<body>
<div id="map"></div>
</body>
</html>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
相关文章推荐