我想知道你是否可以就以下问题向我提出建议或指出正确的方向。
在KML文件中,我有一个地标,其造型告诉它是橙色的;但它在地图上显示为绿色:
正如您在导航栏中看到的那样,它是橙色的:
是什么导致这种情况发生?
这是地图的图片:
为什么地标在地图上的颜色与导航栏不同?请注意,有些地标有效(地图和导航颜色相同),有些则不工作! 我做错了什么?
这是我的KML标题:
<?xml version="1.0" encoding="UTF-8"?><kml xmlns="http://www.opengis.net/kml/2.2"><Document>
<name></name>
<description></description>
<Style id="MentalHealthFacilitiesClinic">
<IconStyle>
<scale>1</scale>
<Icon>
<href>http://static.batchgeo.com/images/icons/orange_shadow_Marker.png</href>
</Icon>
<hotSpot x=".3" y=".8" xunits="fraction" yunits="fraction" />
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
<BalloonStyle>
<text><![CDATA[ <b>$[name]</b><br />$[address]<br />$[description]]]></text>
</BalloonStyle>
</Style>
<Style id="MentalHealthFacilitiesHospital">
<IconStyle>
<scale>1</scale>
<Icon>
<href>http://static.batchgeo.com/images/icons/orange_shadow_Marker.png</href>
</Icon>
<hotSpot x=".3" y=".8" xunits="fraction" yunits="fraction" />
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
<BalloonStyle>
<text><![CDATA[ <b>$[name]</b><br />$[address]<br />$[description]]]></text>
</BalloonStyle>
</Style>
<Style id="MentalHealthFacilitiesLTC">
<IconStyle>
<scale>1</scale>
<Icon>
<href>http://static.batchgeo.com/images/icons/orange_shadow_Marker.png</href>
</Icon>
<hotSpot x=".3" y=".8" xunits="fraction" yunits="fraction" />
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
<BalloonStyle>
<text><![CDATA[ <b>$[name]</b><br />$[address]<br />$[description]]]></text>
</BalloonStyle>
</Style>
<Style id="MLCustomer">
<IconStyle>
<scale>1</scale>
<Icon>
<href>http://static.batchgeo.com/images/icons/green_shadow_Marker.png</href>
</Icon>
<hotSpot x=".3" y=".8" xunits="fraction" yunits="fraction" />
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
<BalloonStyle>
<text><![CDATA[ <b>$[name]</b><br />$[address]<br />$[description]]]></text>
</BalloonStyle>
</Style>
<Style id="PastMLCustomer">
<IconStyle>
<scale>1</scale>
<Icon>
<href>http://static.batchgeo.com/images/icons/yellow_shadow_Marker.png</href>
</Icon>
<hotSpot x=".3" y=".8" xunits="fraction" yunits="fraction" />
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
<BalloonStyle>
<text><![CDATA[ <b>$[name]</b><br />$[address]<br />$[description]]]></text>
</BalloonStyle>
</Style>
<Style id="SuboxoneTreatment">
<IconStyle>
<scale>1</scale>
<Icon>
<href>http://static.batchgeo.com/images/icons/blue_shadow_Marker.png</href>
</Icon>
<hotSpot x=".3" y=".8" xunits="fraction" yunits="fraction" />
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
<BalloonStyle>
<text><![CDATA[ <b>$[name]</b><br />$[address]<br />$[description]]]></text>
</BalloonStyle>
</Style>
<Style id="SuboxonePrescribers">
<IconStyle>
<scale>1</scale>
<Icon>
<href>http://static.batchgeo.com/images/icons/paleblue_shadow_Marker.png</href>
</Icon>
<hotSpot x=".3" y=".8" xunits="fraction" yunits="fraction" />
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
<BalloonStyle>
<text><![CDATA[ <b>$[name]</b><br />$[address]<br />$[description]]]></text>
</BalloonStyle>
</Style>
答案 0 :(得分:2)
您有两个标记直接相互叠加。您可以通过阴影更暗的方式或通过查看KML文件来判断。