}
if ( lat.equals("") == false && lon.equals("") == false && pla.equals("") == false )
{
LatLon latlon = LatLon.fromDegrees(Double.parseDouble(lat), Double.parseDouble(lon));
PointOfInterest loc = new BasicPointOfInterest(latlon);
loc.setValue(AVKey.DISPLAY_NAME, pla );
lstPois.add(loc);
}
}
return lstPois;