Поиск точек довольно прост и не требует умной тригонометрии. Обратите внимание, что если расстояние между точками должно быть определенным, скажем, каждые 100 метров, то потребуется тригонометрия. Мы сделаем простую версию, однако.
По сути, вы вычисляете разницу между широтами и разницей между долготами, решаете, сколько точек вы хотите (как отмечалось, «все» - это бесконечное число), делите расстояние на количество точек и итерируете их. (Примечание: я не тестировал этот код, но вы должны понять эту идею.)
// Making my own names for your start and stop coordinate, use your own
CLLocationCoordinate2D startPoint; // Your starting latitude and longitude
CLLocationCoordinate2D stopPoint; // Ending latitude and longitude
CLLocationCoordinate2D newPoint; // A newly-created point along the line
double latitudeModifier; // Distance to add/subtract to each latitude point
double longitudeModifier; // Distance to add/subtract to each longitude point
int numberOfPoints = 100; // The number of points you want between the two points
// Determine the distance between the lats and divide by numberOfPoints
latitudeModifier = (startPoint.latitude - endPoint.latitude) / numbernumberOfPoints;
// Same with lons
longitudeModifier = (startPoint.longitude - endPoint.longitude) / numbernumberOfPoints;
// Loop through the points
for (int i = 0; i < numberOfPoints; i++) {
newPoint.latitude = startPoint.latitude + (latitudeModifier * i);
newPoint.longitude = startPoint.longitude + (longitudeModifier * i);
// Do something with your newPoint here
}