On Feb 19, 4:21 pm, Dommer <[email protected]> wrote:
> I've been working on this page:
>
> http://freeforthepicking.com/WaterResources/WellMap.html
>
> For the well features, I am getting both push pins AND the water drop
> icons that I want.  I've looked through the code and can't figure out
> why I would be getting both regular pushpin icons AND the water-drop
> icons.  I did the code the same way for the water reservoir features
> and those icons seem fine.
>
> Your help greatly appreciated!

Your map doesn't work in IE6.
The "layers" object has a null element at the end (a "," without
anything after it)...

Your KML has duplicate copies of some of the points in it, one with
the custom icon and one with the default icon.
One example:
       <Placemark>
         <name><![CDATA[FOWLER - MCFARLAND FOWLER - McFARLAND]]></
name>
         <Snippet maxLines="2"></Snippet>
         <styleUrl>#FEATURES</styleUrl>  <-------------------------
this uses the custom icon
         <Point>
           <extrude>0</extrude>
           <altitudeMode>clampedToGround</altitudeMode>
           <coordinates>
             -122.775,47.58347,0
           </coordinates>
         </Point>
       </Placemark>

=====================
      <Placemark>
        <name><![CDATA[FOWLER - MCFARLAND FOWLER - McFARLAND]]></name>
        <styleUrl>#FEATURES_LABELS</styleUrl>
<------------------------- this doesn't use the custom icon
        <Point>
          <extrude>0</extrude>
          <altitudeMode>clampedToGround</altitudeMode>
          <coordinates>
            -122.775,47.58347,0
          </coordinates>
        </Point>
      </Placemark>

  -- Larry

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Maps API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/Google-Maps-API?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to