From fbaa6a87acc7520ca9c457e7c06c51220fbe2902 Mon Sep 17 00:00:00 2001 From: Nikolia558 <38259407+Nikolai558@users.noreply.github.com> Date: Tue, 9 Aug 2022 17:06:33 -0600 Subject: [PATCH] #92 Asdex's cant have style or thickness with asdex property. --- FeBuddyLibrary/DataAccess/GeoJson.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/FeBuddyLibrary/DataAccess/GeoJson.cs b/FeBuddyLibrary/DataAccess/GeoJson.cs index f09f5aa..951169a 100644 --- a/FeBuddyLibrary/DataAccess/GeoJson.cs +++ b/FeBuddyLibrary/DataAccess/GeoJson.cs @@ -252,6 +252,8 @@ private List CreateAsdexVideoMap(List vmElements, Dictionary if (asdexColorDef[asdexColorKey].Contains(elementItem.Color.ToLower()) && asdexColorKey != "UNKNOWN") { currentFeature.properties.asdex = asdexColorKey; + currentFeature.properties.thickness = null; + currentFeature.properties.style = null; } }