Exemplo n.º 1
0
 internal LookWithOsm(string apiUrl, SupportedApi api, LookWithOsmAdjustment adjustment)
 {
     ApiUrl = apiUrl;
     switch (api)
     {
     case SupportedApi.OverpassApi:
         ApiClient = new OverpassApiClient();
         break;
     }
     Adjustment = adjustment;
 }
Exemplo n.º 2
0
 internal LookWithOsm(string apiUrl, LookWithOsmAdjustment adjustment, IOsmApiClient apiClient)
 {
     ApiUrl     = apiUrl;
     ApiClient  = apiClient;
     Adjustment = adjustment;
 }
Exemplo n.º 3
0
 public LookWithOsm(string apiUrl, LookWithOsmAdjustment adjustment) :
     this(apiUrl, SupportedApi.OverpassApi, adjustment)
 {
 }