From 3f018d72cc92a812adeadd1721c8ad3f9a033554 Mon Sep 17 00:00:00 2001 From: Hannah Date: Mon, 23 Oct 2017 17:33:13 -0400 Subject: [PATCH] Tweak KmlDataSource --- Source/DataSources/KmlDataSource.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/DataSources/KmlDataSource.js b/Source/DataSources/KmlDataSource.js index ef41302c2250..ff35a7d8c250 100644 --- a/Source/DataSources/KmlDataSource.js +++ b/Source/DataSources/KmlDataSource.js @@ -1150,7 +1150,7 @@ define([ // If there were empty tags in the KML, then billboard.image was set to false above // However, in this case, the false value would have been converted to a property afterwards // Thus, we check if billboard.image is defined with value of false - } else if (billboard.image && !billboard.image.getValue()) { + } else if (!billboard.image.getValue()) { billboard.image = undefined; }