Skip to content

Commit 25c1b52

Browse files
committed
fix(ios): marker opacity
1 parent efdabe0 commit 25c1b52

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

ios/MapMarkerBuilder.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ final class MapMarkerBuilder {
4747
m.position = next.coordinate.toCLLocationCoordinate2D()
4848
m.title = next.title
4949
m.snippet = next.snippet
50+
m.opacity = Float(next.opacity ?? 1)
5051
m.iconView?.alpha = CGFloat(next.opacity ?? 1)
5152
m.isFlat = next.flat ?? false
5253
m.isDraggable = next.draggable ?? false

0 commit comments

Comments
 (0)