Kristjan Kotnik
Kristjan Kotnik
Any info about that?
lineManager = LineManager(map, this, style).apply { lineCap = Property.LINE_CAP_ROUND } points.map { line -> val lineOptions = LineOptions() .withLineColor(linesColor) .withLineWidth(3f) .withGeometry( LineString.fromLngLats(line.map { Point.fromLngLat(it.longitude, it.latitude) }) ) lines.add(lineManager.create(lineOptions)) }
I've just noticed that the line appeared for a brief second and then disappeared.
Then I tried with a different approach: I tried adding GeoJsonSource and LineLayer. Lines are shown, but when I update GeoJsonSource with different data, lines are hidden again 👎 When...
Any info about that?