mapbox-gl 使用turf计算距离(代码片段)

参考:geojson对象的说明:(以后添加)

HTML DOM CURSOR :  https://www.w3school.com.cn/jsref/prop_style_cursor.asp

基本思路是:

1.定义geojson对象,包括point和linestring;

2.map.on就启动回调函数,回调函数做以下几件事:

2.1  添加数据源,添加图层

2.2  监听鼠标点击事件

2.3  如果点击在点图层,进行删除,如果不是,那么就是添加;

2.4  添加点、添加线

2.5 对数据源添加数据。

直接上代码,注释即解释。


//显示计算结果的div
var distanceContainer = document.getElementById('distance');
// GeoJSON object to hold our measurement features
var geojson = {
	'type': 'FeatureCollection',
	'features': []
};
// Used to draw a line between points
var linestring = {
	'type': 'Feature',
	'geometry': {
		'type': 'LineString',
		'coordinates': []
	}
};

map.on('load', function() {
	map.addSource('geojson', {
		'type': 'geojson',
		'data': geojson
	}); 
	// Add styles to the map
	map.addLayer({
		id: 'measure-points',
		type: 'circle',
		source: 'geojson',
		paint: {
			'circle-radius': 5,
			'circle-color': '#000'
		},
		filter: ['in', '$type', 'Point']
	});
	map.addLayer({
		id: 'measure-lines',
		type: 'line',
		source: 'geojson',
		layout: {
			'line-cap': 'round',
			'line-join': 'round'
		},
		paint: {
			'line-color': '#000',
			'line-width': 2.5
		},
		filter: ['in', '$type', 'LineString']
	});
 
	map.on('click', function(e) {
		//获取鼠标所在经纬度的图层的属性
		var features = map.queryRenderedFeatures(e.point, {
			layers: ['measure-points']
		});
 
		// Remove the linestring from the group
		// So we can redraw it based on the points collection
		if (geojson.features.length > 1)  geojson.features.pop();
	 
		// Clear the Distance container to populate it with a new value
		distanceContainer.innerHTML = '';
	 
		// If a feature was clicked, remove it from the map
		if (features.length) {
			var id = features[0].properties.id;
			//geojson的过滤器,哪里可以找到它的相关规范说明
			geojson.features = geojson.features.filter(function(point) {
				return point.properties.id !== id;
			});
		} else {
			var point = {
				'type': 'Feature',
				'geometry': {
					'type': 'Point',
					'coordinates': [e.lngLat.lng, e.lngLat.lat]
				},
				'properties': {
					'id': String(new Date().getTime())
				}
			}; 
			//画点
			geojson.features.push(point);
		}
	 
		if (geojson.features.length > 1) {
			linestring.geometry.coordinates = geojson.features.map(function(point) {
				return point.geometry.coordinates;
			});	
			//画线
			geojson.features.push(linestring);
			 
			// Populate the distanceContainer with total distance
			var value = document.createElement('pre');
			value.textContent =
				'Total distance: ' +
				turf.length(linestring).toLocaleString() +
				'km';
			distanceContainer.appendChild(value);
		}		 
		map.getSource('geojson').setData(geojson);
	});
});
	 
map.on('mousemove', function(e) {
	//获取鼠标所在经纬度的图层的属性
	var features = map.queryRenderedFeatures(e.point, {
		layers: ['measure-points']
	});
	// UI indicator for clicking/hovering a point on the map
	// style.cursor 是HTML DOM的 鼠标对象
	map.getCanvas().style.cursor = features.length
		? 'pointer'
		: 'crosshair';
});
	

猜你喜欢

转载自blog.csdn.net/aganliang/article/details/107009722
今日推荐