Open
Description
mapbox-gl-js version: 3.11.0
browser: Chrome
Steps to Trigger Behavior
- I added a layer using the method map.addLayer, with the source set to GeoJSON, which consists of a collection of point coordinates.
map.addSource('geojson', {
type: 'geojson',
data: '/result/origin.geojson'
});
map.addLayer({
id: 'points',
type: 'circle',
source: 'geojson',
paint: {
'circle-color': '#0000FF',
'circle-radius': 10
}
});
- Due to the extremely close proximity of the points (around 0.1 meters apart), they cannot be displayed correctly on the map, whereas they appear normal in QGIS.
- "The following are the display effects in Mapbox and QGIS, respectively."
QGIS:
Mapbox:
How should I resolve this issue?