@@ -39,23 +39,35 @@ NS_ASSUME_NONNULL_BEGIN
3939 onFloor : (NSInteger )floorId ;
4040
4141
42- // / The color of the polyline.
42+ // / The color of the polyline. The default value is opaque black.
4343@property (nonatomic , copy ) UIColor* color;
4444
45- // / The thickness in pixels of the polyline.
45+ // / The thickness in pixels of the polyline. The default value is 10.
4646@property (nonatomic ) CGFloat lineWidth;
4747
48+ /* ! A value used to limit the extent of spikes where line segments join at small
49+ (acute) angles. The value of miterLimit represents the maximum ratio between the
50+ length of the miter join diagonal, and lineWidth. The default value is 10, which
51+ results in clamping of the miter diagonal when the join angle is less than
52+ approximately 11 degrees.
53+ */
54+ @property (nonatomic ) CGFloat miterLimit;
55+
4856// / If YES, line width scales with perspective as the map viewpoint zooms in and out (default NO)
4957@property (nonatomic ) Boolean scalesWithMap;
5058
51- // / The height of the polyline above either the ground, or sea-level, depending on the elevationMode property.
59+ /* ! The height of the polyline above either the ground, or sea-level, depending on the elevationMode property.
60+ The default value is 0
61+ */
5262@property (nonatomic ) CLLocationDistance elevation;
5363
5464/* !
5565 Specifies how the elevation property of this polyline is interpreted:
5666
5767 - `WRLDElevationModeHeightAboveSeaLevel`: The elevation is an absolute altitude above mean sea level, in meters.
5868 - `WRLDElevationModeHeightAboveGround`: The elevation is a height relative to the map's terrain, in meters.
69+
70+ The default value is WRLDElevationModeHeightAboveGround
5971 */
6072@property (nonatomic ) WRLDElevationMode elevationMode;
6173
0 commit comments