Files @ 2f841e844536
Branch filter:

Location: seniordesign-ui/GMap.NET.Core/GMap.NET/GeocodingProvider.cs

mkanning@CL-ENS241-10.cedarville.edu
fixed the problem of two forms being created. still need to fix the addToChart()
and addMarker()

namespace GMap.NET
{
   using System.Collections.Generic;

   /// <summary>
   /// geocoding interface
   /// </summary>
   public interface GeocodingProvider
   {
      GeoCoderStatusCode GetPoints(string keywords, out List<PointLatLng> pointList);

      PointLatLng? GetPoint(string keywords, out GeoCoderStatusCode status);

      GeoCoderStatusCode GetPoints(Placemark placemark, out List<PointLatLng> pointList);

      PointLatLng? GetPoint(Placemark placemark, out GeoCoderStatusCode status);

      // ...

      GeoCoderStatusCode GetPlacemarks(PointLatLng location, out List<Placemark> placemarkList);

      Placemark ? GetPlacemark(PointLatLng location, out GeoCoderStatusCode status);
   }
}