I have a KML layer which I form from an input Stream as so:
private KmlLayer layer;
inputStream = new URL("urlHERE").openStream();
layer = new KmlLayer(mMap, inputStream, getApplicationContext());
I want to iterate through each marker in this layer and check if it is within a certain distance to my current location and display it only if it is.
This is the code I am using to currently get the lat/long of the markers.
for (KmlPlacemark placemark: layer.getPlacemarks()) {
String s = placemark.getGeometry().getGeometryObject().toString();
Log.d("placemarks",s);
String start = "(";
String end = ")";
String latlngvalue = s.substring(s.indexOf(start)+1,s.lastIndexOf(end));
String[] strngs = latlngvalue.split(",");
double placemarkerLat = Double.parseDouble(strngs[0]);
double placemarkerLong = Double.parseDouble(strngs[2]);
markerLocation.setLatitude(placemarkerLat);
markerLocation.setLongitude(placemarkerLong);
What I want to do is add the information for each Marker in an ArrayList if they are within a certain distance of the user and then add the markers onto the map.
CHECK THIS LINE
currLocationMarker = mGoogleMap.addMarker(markerOptions); //YOUR ANSWER HERE