地图上的图像集的性能问题

时间:2017-02-27 10:30:56

标签: android mapbox mapbox-gl mapbox-marker

需要添加约400张图像(标记)才能进行贴图。图像是可绘制的,而不是位图图片。这是正确的方法吗?

GeoJsonSource source;
mapboxMap.addSource(source);

for(Item item : items){

        Bitmap bitmap;
        SymbolLayer markerLayer = new SymbolLayer("layerA", sourceId);

        markerLayer.withProperties(PropertyFactory.iconImage(imageId));
        markerLayer.setFilter(
                all(
                        eq("id", item.getId()),
                        eq("coordinates", item.getLatLng())
                )
        );

        mapboxMap.addLayer(markerLayer, layerId);
        mapboxMap.addImage(imageId, bitmap);

}

使用此方法,地图变得无法响应,fps显着下降。可能这只是地图引擎的限制。

1 个答案:

答案 0 :(得分:0)

创建可绘制图像的数组,将所有图像存储在其中。

喜欢

int[] images = new int[] {};//store all images {in here}

然后按位置使用地图图标..或者创建一个for循环

for (int i = 0;i<images.lenght;i++){
//apply your code here and set the images
mapboxMap.addImage(imageId, bitmap.get[i]);
}

可能会帮助你..