Hello,
I am showing a KML layer on our map, that includes lines and text. When I look at the layer in Google Earth, the text is on top of the lines, and can be read easily. When I show the layer on our map, the lines are on top of the text, and is harder to read. Is there a property or something I can adjust to get the text to draw over the lines? Also, the code builds an .idx file for the KML file if there isn’t one.
Here is the code the loads the layer:
Dim kmlLayer As New KmlFeatureLayer(fileName)
kmlLayer.FeatureSource.Projection = proj4
kmlLayer.ZoomLevelSet.ZoomLevel04.ApplyUntilZoomLevel = ApplyUntilZoomLevel.Level20
kmlLayer.IsVisible = True
kmlLayer.Transparency = 255
kmlLayer.Name = layerName
kmlLayer.DrawingQuality = DrawingQuality.HighQuality
stormOverlay.Layers.Add(kmlLayer.Name, kmlLayer)
The KMZ can be found at:
https://www.nhc.noaa.gov/storm_graphics/api/EP142018_016adv_most_likely_toa_34.kmz
Thanks,
Dib