I am stumped. We have a stored procedure that creates a KML file on the fly. the snag is not all the styles are working. Any one with a DOT in the name doesn't work.
any suggestions <kml xmlns="http://earth.google.com/kml/2.0"><Document> <Style id="RedID"><IconStyle><scale>1</scale><Icon><href>http:// www.OurWebSite.com/images/mapimages/red.png</href></Icon></IconStyle><LabelStyle><scale>0</scale></LabelStyle></Style> <Style id="GreenID"><IconStyle><scale>1.0</scale><Icon><href>http:// www.OurWebSite.com/images/mapimages/Green.png</href></Icon></IconStyle><LabelStyle><scale>1</scale></LabelStyle></Style> <Style id="LightBlueID"><IconStyle><scale>1.0</ scale><Icon><href>http://www.OurWebSite.com/images/mapimages/ LittleBlue.png</href></Icon></IconStyle><LabelStyle><scale>1</scale></ LabelStyle></Style> <Style id="PinkID"><IconStyle><scale>1.0</scale><Icon><href>http:// www.OurWebSite.com/images/mapimages/Pink.png</href></Icon></IconStyle><LabelStyle><scale>1</scale></LabelStyle></Style> <Style id="YellowID"><IconStyle><scale>1.0</scale><Icon><href>http:// www.OurWebSite.com/images/mapimages/Yellow.png</href></Icon></IconStyle><LabelStyle><scale>1</scale></LabelStyle></Style> <Style id="BlueID"><IconStyle><scale>1.0</scale><Icon><href>http:// www.OurWebSite.com/images/mapimages/Blue.png</href></Icon></IconStyle><LabelStyle><scale>1</scale></LabelStyle></Style> <Style id="RedDotID"><IconStyle><scale>1</scale><Icon><href>http:// www.OurWebSite.com/images/mapimages/BluePin.png</href></Icon></IconStyle><LabelStyle><scale>0</scale></LabelStyle></Style> <Style id="GreenDotID"><IconStyle><scale>1.0</scale><Icon><href>http:// www.OurWebSite.com/images/mapimages/GreenDot.png</href></Icon></IconStyle><LabelStyle><scale>1</scale></LabelStyle></Style> <Style id="LightDotBlueID"><IconStyle><scale>1.0</ scale><Icon><href>http://www.OurWebSite.com/images/mapimages/ LittleBlueDot.png</href></Icon></IconStyle><LabelStyle><scale>1</ scale></LabelStyle></Style> <Style id="PinkDotID"><IconStyle><scale>1.0</scale><Icon><href>http:// www.OurWebSite.com/images/mapimages/PinkDot.png</href></Icon></IconStyle><LabelStyle><scale>1</scale></LabelStyle></Style> <Style id="YellowDotID"><IconStyle><scale>1.0</ scale><Icon><href>http://www.OurWebSite.com/images/mapimages/ YellowDot.png</href></Icon></IconStyle><LabelStyle><scale>1</scale></ LabelStyle></Style> <Style id="BlueDotID"><IconStyle><scale>1.0</scale><Icon><href>http:// www.OurWebSite.com/images/mapimages/BlueDot.png</href></Icon></IconStyle><LabelStyle><scale>1</scale></LabelStyle></Style> <StyleMap id="Red"><Pair><key>normal</key><styleUrl>#RedID</styleUrl></ Pair><Pair><key>highlight</key><styleUrl>#RedID</styleUrl></Pair></ StyleMap> <StyleMap id="Green"><Pair><key>normal</key><styleUrl>#GreenID</ styleUrl></Pair><Pair><key>highlight</key><styleUrl>#RedID</styleUrl></ Pair></StyleMap> <StyleMap id="LightBlue"><Pair><key>normal</ key><styleUrl>#LightBlueID</styleUrl></Pair><Pair><key>highlight</ key><styleUrl>#RedID</styleUrl></Pair></StyleMap> <StyleMap id="Pink"><Pair><key>normal</key><styleUrl>#PinkID</ styleUrl></Pair><Pair><key>highlight</key><styleUrl>#RedID</styleUrl></ Pair></StyleMap> <StyleMap id="Yellow"><Pair><key>normal</key><styleUrl>#YellowID</ styleUrl></Pair><Pair><key>highlight</key><styleUrl>#RedID</styleUrl></ Pair></StyleMap> <StyleMap id="Blue"><Pair><key>normal</key><styleUrl>#BlueID</ styleUrl></Pair><Pair><key>highlight</key><styleUrl>#RedID</styleUrl></ Pair></StyleMap> <StyleMap id="BluePin"><Pair><key>normal</key><styleUrl>#BluePinID</ styleUrl></Pair><Pair><key>highlight</key><styleUrl>#RedID</styleUrl></ Pair></StyleMap> <StyleMap id="RedDot"><Pair><key>normal</key><styleUrl>#RedDotID</ styleUrl></Pair><Pair><key>highlight</key><styleUrl>#RedID</styleUrl></ Pair></StyleMap> <StyleMap id="GreenDot"><Pair><key>normal</key><styleUrl>#GreenDotID</ styleUrl></Pair><Pair><key>highlight</key><styleUrl>#RedID</styleUrl></ Pair></StyleMap> <StyleMap id="LightBlueDot"><Pair><key>normal</ key><styleUrl>#LightBlueDotID</styleUrl></Pair><Pair><key>highlight</ key><styleUrl>#RedID</styleUrl></Pair></StyleMap> <Placemark><name>1234 Main Street New York,95551</name><description><! [CDATA[<div style="font-size:larger"><div><div style="width: 212px; font-size: 12px;">Notes: some notes<BR>Driver:Me<BR></div>]]></ description><styleUrl>#YellowDot</ styleUrl><Point><coordinates>-117.646,33.602</coordinates></Point></ Placemark> <Placemark><name>1234 Another Street Somewherefun,95555</ name><description><![CDATA[<div style="font-size:larger"><div><div style="width: 212px; font-size: 12px;">Notes: <BR>Driver: <BR>Comp: <BR></div>]]></description><styleUrl>#PinkDot</ styleUrl><Point><coordinates>-117.589,33.68</coordinates></Point></ Placemark> </Document></kml>
-- You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send email to google-maps-...@googlegroups.com. To unsubscribe from this group, send email to google-maps-api+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-maps-api?hl=en.