Elements tweet_loc = doc.select("a.tweet-geo-text");
if (!tweet_loc.isEmpty()) {
JsonObject location = new JsonObject();
Element loc = tweet_loc.first();
// Adding http to avoid malformed URL exception
URL url = new URL("http:" + loc.attr("href"));
Map<String, String> query_params = HTMLStatusExtractor.splitQuery(url);
// Loop over possible query parameters
// http://asnsblues.blogspot.ch/2011/11/google-maps-query-string-parameters.html
String lat_and_long = null;
if ((lat_and_long = query_params.get("ll")) != null