message = Map();
lat_long = destination_details.toMap().get("results").toMap().get("geometry").get("location");
lat = lat_long.get("lat");
long = lat_long.get("lng");
results = traffic.toMap().get("rows").toMap().get("elements").toMap().get("status");
if ( results == "OK" )
{
time = traffic.toMap().get("rows").toMap().get("elements").toMap().get("duration").get("text");
time_traffic = traffic.toMap().get("rows").toMap().get("elements").toMap().get("duration_in_traffic").get("text");
}
else
{
message.put("text","Sorry! Can't find the traffic details now. Try [here](" + mapURL + ")");
}
return message;