Mapbox GL JS在一定缩放/距离后不渲染层



我有一个用mapbox-gl渲染的地图,只有两层,一个标记和一个以点为中心的圆。该距离是动态的,因为它是基于以米为单位的预定义距离。

但是,放大并远离中心后,该层会突然从贴图渲染中消失。我曾尝试在geojson源代码上实现maxzoom并将容差设置为0,但在距离中心一定的缩放/距离后,层似乎仍然会消失。

GIF显示平移时发生的情况:https://i.stack.imgur.com/RIC5A.jpg

我是否遗漏了一些用于改善/扩大渲染距离的属性?我不打算使用太多的点,所以性能不应该是这个用例的问题。

<template>
<div id="mapContainer" class="basemap"></div>
</template>
<script lang="ts">
import { defineComponent } from 'vue'
import mapboxgl, { CircleLayer } from 'mapbox-gl'
export default defineComponent({
name: 'Map',
mounted: function () {
mapboxgl.accessToken =
'abc'
const map: mapboxgl.Map = new mapboxgl.Map({
container: 'mapContainer',
style: 'mapbox://styles/mapbox/streets-v11',
center: [101.58165, 3.03837],
zoom: 13,
maxZoom: 17
})
const geofence = [
{
name: 'Location 1',
lat: 3.037479466090297,
lng: 101.58102250675641,
distance: 1000
}
]
map.on('load', function () {
map.loadImage('https://docs.mapbox.com/mapbox-gl-js/assets/custom_marker.png', function (error, image) {
if (error) throw error
if (image) {
map.addImage('custom-marker', image)
map.addSource('points', {
type: 'geojson',
data: {
type: 'Feature',
geometry: {
type: 'Point',
coordinates: [geofence[0].lng, geofence[0].lat]
},
properties: {
title: geofence[0].name,
distance: geofence[0].distance
}
},
maxzoom: 22,
tolerance: 0
})
map.addLayer({
id: 'points',
type: 'symbol',
source: 'points',
layout: {
'icon-image': 'custom-marker',
'text-field': ['get', 'title'],
'text-font': ['Open Sans Semibold'],
'text-offset': [0, 1.25],
'text-anchor': 'top'
}
})
const circleLayer: CircleLayer = {
id: 'geofence',
type: 'circle',
source: 'points',
paint: {
'circle-radius': {
stops: [
[0, 0],
[21, metersToPixelsAtMaxZoom(geofence[0].distance, geofence[0].lat)]
],
base: 2
},
'circle-opacity': 0.5,
'circle-color': 'blue',
'circle-stroke-width': 2,
'circle-stroke-color': 'black'
}
}
map.addLayer(circleLayer)
}
})
})
}
})
const metersToPixelsAtMaxZoom = (meters: any, latitude: any) => meters / 0.075 / Math.cos((latitude * Math.PI) / 180)
</script>
<style lang="scss">
#mapContainer {
width: auto;
height: 400px;
}
</style>

显示的代码是在TypeScript中的,但我相信删除类型会使它表现得很好。

我认为您看到的是Mapbox GL JS并不真正支持的边缘案例。

处理这一问题的更好方法是使用TurfJS创建一个具有circle()的多边形,并将其添加为geojson层。

相关内容

  • 没有找到相关文章

最新更新