mapbox根据point获取点位信息
时间: 2023-09-03 20:16:38 浏览: 206
基于互联网地图的POI点获取工具
要根据point获取点位信息,可以使用Mapbox的Feature State功能。具体步骤如下:
1. 在Mapbox官网注册账户并创建一个项目。
2. 在项目中添加地图数据源和图层。
3. 在数据源中添加点位信息,并为每个点位设置一个唯一的ID。
4. 在图层中使用数据源中的点位信息,并将点位ID设置为图层的id属性。
5. 在前端代码中监听地图的点击事件,获取点击点的坐标。
6. 使用Mapbox的queryRenderedFeatures方法查询当前点击点下面的点位信息,并获取该点位的ID。
7. 使用Mapbox的setFeatureState方法设置该点位的状态为选中状态。
8. 在前端页面中根据该点位的状态展示对应的信息。
以下是示例代码:
```javascript
// 添加地图数据源和图层,其中点位数据源名为 'points',点位图层名为 'points-layer'
map.addSource('points', {
type: 'geojson',
data: {
type: 'FeatureCollection',
features: [
{
type: 'Feature',
properties: {
name: 'Point 1'
},
geometry: {
type: 'Point',
coordinates: [100, 0]
},
id: 'point-1'
},
{
type: 'Feature',
properties: {
name: 'Point 2'
},
geometry: {
type: 'Point',
coordinates: [101, 1]
},
id: 'point-2'
}
]
}
});
map.addLayer({
id: 'points-layer',
type: 'circle',
source: 'points',
paint: {
'circle-radius': 10,
'circle-color': '#007cbf'
}
});
// 监听地图点击事件
map.on('click', function(e) {
// 获取点击点的坐标
var point = e.point;
// 查询当前点击点下面的点位信息,并获取该点位的ID
var features = map.queryRenderedFeatures(point, { layers: ['points-layer'] });
var feature = features[0];
var id = feature.properties.id;
// 设置该点位的状态为选中状态
map.setFeatureState({ source: 'points', id: id }, { selected: true });
});
// 监听地图移动事件,恢复所有点位的状态为未选中状态
map.on('move', function() {
var features = map.queryRenderedFeatures({ layers: ['points-layer'] });
features.forEach(function(feature) {
var id = feature.properties.id;
map.setFeatureState({ source: 'points', id: id }, { selected: false });
});
});
// 在前端页面中根据点位状态展示对应信息
map.on('click', 'points-layer', function(e) {
var name = e.features[0].properties.name;
var selected = e.features[0].state.selected;
if (selected) {
// 展示选中状态的信息
console.log(name + ' is selected');
} else {
// 展示未选中状态的信息
console.log(name + ' is not selected');
}
});
```
需要注意的是,使用Feature State功能需要在代码中设置Mapbox的版本为1.6.0及以上,并且需要在图层中设置state属性。
阅读全文