I am new in google map place api. I want to draw a route between two points. I am using the code(part) for this in complete code. Here I am getting exception. Can anyone help me for this. Why i am getting this exception.
Thanks in advance.
String url = RoadProvider.getUrl(26.9114976,75.8065347, placeLatitide, placeLongitude);
InputStream is = getConnection(url);
InputSource inputSource = new InputSource(is);
inputSource.setEncoding("UTF-8");
mRoad = RoadProvider.getRoute(inputSource);
mHandler.sendEmptyMessage(0);
public static Road getRoute(InputSource is) {
KMLHandler handler = new KMLHandler();
try {
SAXParser parser = SAXParserFactory.newInstance().newSAXParser();
parser.parse(is, handler);
} catch (ParserConfigurationException e) {
e.printStackTrace();
} catch (SAXException e) {
e.printStackTrace(); //HERE I am getting exception
} catch (IOException e) {
e.printStackTrace();
}
return handler.mRoad;
}
Exception : org.apache.harmony.xml.ExpatParser$ParseException: At line 1, column 821: not well-formed (invalid token)
