Mapbox Android SDK:使用symbolManager添加制作者

时间:2019-10-01 13:45:47

标签: android kotlin mapbox mapbox-android

我正在尝试使用Mapbox Android SDK并根据推荐的here使用symbolManager添加多个标记。

我只是创建此函数,该函数负责为每个汽车对象创建一个标记。我没有收到任何错误,但地图上没有任何显示。

private fun displayCarsLayer(cars: MutableList<Car>) {

        mapView.getMapAsync(OnMapReadyCallback { mapboxMap ->
            for (car in cars) {
                val carLat = car.lat
                val carLng = car.lng
                // Add the marker to the map
                symbolManager.create(
                    SymbolOptions()
                    .withLatLng(LatLng(carLat, carLng))
                );
            }
        })

    }

1 个答案:

答案 0 :(得分:0)

这可能有点晚,但这可能与初始化symbolManager的方式有关。目前,您尚未初始化它。

一旦加载了地图和样式,就可以在onMapReady回调中初始化SymbolManager:

val symbolManager = SymbolManager(mapView, mapboxMap, style)

然后您可以继续执行代码:

symbolManager.create(
                SymbolOptions()
                .withLatLng(LatLng(carLat, carLng))
            )