I have the basic part of the app/map working/displaying. But when I try to geocode multiple addresses and then display the markers, it only shows me the last address. Only the last address will show on the map.
GMGeoCode1.Geocode('address 1 anytown st');
GMGeoCode1.Geocode('address 2 anytown st');
for I := 0 to GMGeoCode1.Count - 1 do
begin
GMGeoCode1.Marker.Add(GMGeoCode1.GeoResult [i] .Geometry.Location.Lat,
GMGeoCode1.GeoResult [i] .Geometry.Location.Lng,
GMGeoCode1.GeoResult [i] .FormatedAddr);
GMGeoCode1.Marker.Items [i] .MarkerType := mtStyledMarker;
end;