0

我想知道您是否可以就以下问题向我提出建议或指出正确的方向。

在 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>
4

1 回答 1

2

你有两个直接在彼此顶部的标记。您可以通过阴影更暗的方式或查看 KML 文件来判断。

于 2012-08-28T16:56:16.350 回答