featureIterator.close();
}
public static void main(String[] args) throws Exception {
String json = "{\"type\":\"FeatureCollection\",\"features\":[{\"type\":\"Feature\",\"geometry\":{\"type\":\"Point\",\"coordinates\":[43.3599,-11.6515]},\"properties\": {},\"id\":\"null\"}]}";
FeatureJSON fj = new FeatureJSON();
// URL url = new URL("http://www.glews-test.net/eisurvtest/data/outbreakMarker?mode=features&bbox=-218.20632812500003%2C-85.6734453125%2C361.860109375%2C116.8704140625&limit=1");
// InputStream is = url.openStream();
System.out.println(fj.readFeature(json));
}