Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 2286 → Rev 2287

/MKLiveView/v1.0/GMap.NET.Core/GMap.NET/GeocodingProvider.cs
0,0 → 1,25

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);
}
}