Skip to content

Commit 0b4effb

Browse files
committed
Drawing Library: drawn polygon disappears on complete #446
1 parent bbe6056 commit 0b4effb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

GoogleMapsComponents/GoogleMapsComponents.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<RazorLangVersion>3.0</RazorLangVersion>
1616
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
1717
<PackageId>BlazorGoogleMaps</PackageId>
18-
<Version>4.13.7</Version>
18+
<Version>4.13.8</Version>
1919
<Authors>Rungwiroon</Authors>
2020
<Company>QueueStack Solution</Company>
2121
<Product>BlazorGoogleMaps</Product>

GoogleMapsComponents/Maps/PolygonOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public class PolygonOptions : ListableEntityOptionsBase
4141
/// Any simple arrays are converted into MVCArrays.<br/>
4242
/// Inserting or removing LatLngs from the MVCArray will automatically update the polygon on the map.
4343
/// </summary>
44-
public IEnumerable<IEnumerable<LatLngLiteral>> Paths { get; set; } = new List<IEnumerable<LatLngLiteral>>();
44+
public IEnumerable<IEnumerable<LatLngLiteral>>? Paths { get; set; }
4545

4646
/// <summary>
4747
/// The stroke color. All CSS3 colors are supported except for extended named colors.

0 commit comments

Comments
 (0)