我正在使用Mapbox渲染一些Point GeoJSON数据。如何使用Android上的SymbolLayer为图标着色?这似乎也给其他人带来了很多麻烦。这个问题正是我的:https://github.com/mapbox/mapbox-gl-js/issues/1594
val symbolLayer = SymbolLayer("clientLocationsPointsLayer", "clientLocationsPointsSource")
symbolLayer.setProperties(
iconImage("square"),
iconSize(get("radius")),
iconAllowOverlap(true),
iconColor(get("color")),
iconOpacity(get("opacity"))
)
我的square
图片是png。文件说它需要成为自卫队。我如何制作其中一个?还有另一种方法吗?在iOS上,这更简单。 Android真的没有一个好的等价物吗?