blob: a18990d49dd364db73a7ef32b39d899e53b30466 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
using System.Collections.Generic;
using System.Threading.Tasks;
using System;
namespace Xamarin.Forms.Maps.Tizen
{
public class Position {};
internal class GeocoderBackend
{
public static void Register()
{
}
public static async Task<IEnumerable<Position>> GetPositionsForAddressAsync(string address)
{
return new Position[]{};
}
public static async Task<IEnumerable<string>> GetAddressesForPositionAsync(Position position)
{
return new String[]{"Not supported"};
}
}
}
|