I'm working on a project where we are displaying a map of the state of Oregon using google maps. Right now I have a KML Layer that has lines for all the counties and a red overlay. I'm trying to change the color of the overlay but any changes I make to the style tags in the kml file aren't showing up.
The kml file is here, http://sixswords.net/oregon/kml/oregon_counties.kml
You can see the map with the overlay here https://maps.google.com/?q=http://sixswords.net/oregon/kml/oregon_counties.kml
Edit for more specific information:
The original kml file style looks like this.
<Style id='Style0-polygon-3'>
<LabelStyle>
<scale>0.0</scale>
</LabelStyle>
<LineStyle>
<color>ff666666</color>
<width>1</width>
</LineStyle>
<PolyStyle>
<color>7f0000ff</color>
</PolyStyle>
<BalloonStyle>
<text>$[description]</text>
</BalloonStyle>
</Style>
<Style id='Style0-polygon-3-hover'>
<LineStyle>
<color>ff666666</color>
<width>1</width>
</LineStyle>
<PolyStyle>
<color>7f0000ff</color>
</PolyStyle>
<BalloonStyle>
<text>$[description]</text>
</BalloonStyle>
</Style>
<StyleMap id='Style0-polygon-3-map'>
<Pair>
<key>normal</key>
<styleUrl>#Style0-polygon-3</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#Style0-polygon-3-hover</styleUrl>
</Pair>
</StyleMap>
I've tried changing the color value for the polystyle tag in the Style0-polygon-3 style but it doesn't actually change anything.