Hi,
We are generating KML files for the traffic data we calculated and we want to show that on the map with Green,Red and yellow lines.This works fine on Google Earth if i load the KML there.
My requirement is i have to show the same on Google Maps on the device.
************ KML Sample ***********************
<?xml version="1.0" encoding="UTF-8" standalone="no"?><kml xmlns="http://earth.google.com/kml/2.1">
<Document>
<LookAt>
<longitude>-73.7906468706933</longitude>
<latitude>42.75665628887243</latitude>
<altitude>0.0</altitude>
<range>2003.578208227112</range>
<altitudeMode>absolute</altitudeMode>
</LookAt>
<Placemark id="linestring1">
<name>My Path</name>
<description>18.0</description>
<Style id="LineColor">
<LineStyle>
<color>ff0000ff</color>
<width>5.0</width>
</LineStyle>
</Style>
<LineString>
<extrude>1</extrude>
<altitudeMode>relativeToGround</altitudeMode>
<coordinates>-73.76177154935891,42.74131112054128
-73.76161854935891,42.74337112054128
</coordinates>
</LineString>
</Placemark>
</Document></kml>
************ END *********************************
I used the following code to load my KML
Intent mapIntent = new Intent(Intent.ACTION_VIEW);
Uri uri = Uri.parse("geo:0,0?q=http://10.168.6.71/kmlTesting/kmlTesting.jsp?key=DM,USA");
mapIntent.setData(uri);
startActivity(Intent.createChooser(mapIntent, "Sample Map"));
******************************************************
I get the error "This community Map cannot be loaded it contains errors"
I tried capturing a route in google Earth - saved it as KML and used that one to refer in the above piece of code but still the same error.
Could you guys please help me it's really urgent.

-- If anyone has already done this I'd love to hear about it.