在mapbox-gl-js中居中放置文本标签? [英] Centering text label in mapbox-gl-js?

查看:346
本文介绍了在mapbox-gl-js中居中放置文本标签?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试在mapbox-gl-js中的要素多边形上居中放置文本标签.这可能吗?看起来与标签的放置有关的唯一选项是符号放置"布局属性( https://www.mapbox.com/mapbox-gl-style-spec/#symbol ):

I'm trying to center a text label over a feature polygon in mapbox-gl-js. Is this possible? It looks like the only option related to the placement of a label is the "symbol-placement" layout property (https://www.mapbox.com/mapbox-gl-style-spec/#symbol):

符号放置

可选的枚举.点,线之一.默认为指向. 标签相对于其几何形状的放置. line仅可用于线串和多边形.

Optional enum. One of point, line. Defaults to point. Label placement relative to its geometry. line can only be used on LineStrings and Polygons.

使用点"将标签放置在地图项的右下角:

Using "point" places the label at the bottom right corner of the feature:

想法?

推荐答案

您可以使用草皮库,找到多边形的质心,然后用该点的坐标制作符号,并在其中添加文本字段.

You can use the turf library to find the centroid of the polygon, then make a symbol with that point co-ordinate and add the text field to it.

有关在多边形要素的质心上显示的文本标签,请参见以下示例

See the below example for a text label displayed on the centroid of a polygon feature

mapboxgl.accessToken = 'pk.eyJ1IjoiYXJ1bmFicmFoYW0iLCJhIjoiODBJTV9WUSJ9.m5tbZ5XYg8VhD-8Qu7d_SA';

// Initialize the map
var map = new mapboxgl.Map({
    container: 'map', // container id
    style: 'mapbox://styles/mapbox/streets-v8', //stylesheet location
    center: [-68.13734351262877, 45.137451890638886], // starting position
    zoom: 3 // starting zoom
});

// Add a feature
var feature = {
  'type': 'Feature',
  'properties': {
      'name': 'Maine'
  },
  'geometry': {
      'type': 'Polygon',
      'coordinates': [[[-67.13734351262877, 45.137451890638886],
          [-66.96466, 44.8097],
          [-68.03252, 44.3252],
          [-69.06, 43.98],
          [-70.11617, 43.68405],
          [-70.64573401557249, 43.090083319667144],
          [-70.75102474636725, 43.08003225358635],
          [-70.79761105007827, 43.21973948828747],
          [-70.98176001655037, 43.36789581966826],
          [-70.94416541205806, 43.46633942318431],
          [-71.08482, 45.3052400000002],
          [-70.6600225491012, 45.46022288673396],
          [-70.30495378282376, 45.914794623389355],
          [-70.00014034695016, 46.69317088478567],
          [-69.23708614772835, 47.44777598732787],
          [-68.90478084987546, 47.184794623394396],
          [-68.23430497910454, 47.35462921812177],
          [-67.79035274928509, 47.066248887716995],
          [-67.79141211614706, 45.702585354182816],
          [-67.13734351262877, 45.137451890638886]]]
  }
};

// Make a point feature for displaying the text;
// User turf library to find the centroid of the polygon
var centroidPt = turf.centroid(feature);
centroidPt.properties.title = 'label';

map.on('style.load', function () {
    // Add the feature source
    map.addSource('maine', {
        'type': 'geojson',
        'data': feature
    });

    // Add the label point source
    map.addSource('label', {
    	'type': 'geojson',
      'data': centroidPt
    });

	// Add the feature style
    map.addLayer({
        'id': 'route',
        'type': 'fill',
        'source': 'maine',
        'layout': {},
        'paint': {
            'fill-color': '#088',
            'fill-opacity': 0.8
        }
    });

    // Add the label style
    map.addLayer({
        'id': 'label-style',
        'type': 'symbol',
        'source': 'label',
        'layout': {
        	'text-field': 'Label',
          
        },
        'paint': {
            'text-color': 'red'
            
        }
    });
    
});

body { margin:0; padding:0; }
#map { position:absolute; top:0; bottom:0; width:100%; }

<script src="https://api.tiles.mapbox.com/mapbox.js/plugins/turf/v2.0.0/turf.min.js"></script>
<link href="https://api.tiles.mapbox.com/mapbox-gl-js/v0.14.1/mapbox-gl.css" rel="stylesheet"/>
<script src="https://api.tiles.mapbox.com/mapbox-gl-js/v0.14.1/mapbox-gl.js"></script>


<div id='map'></div>

这篇关于在mapbox-gl-js中居中放置文本标签?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆