/// <summary> /// Initializes a new instance of the <see cref="LayerPlugin" /> class. /// </summary> protected LayerPlugin() { ExtensionFilterCore = string.Empty; searchPlaceTool = new SearchPlaceTool(); dataSourceResolveTool = new DataSourceResolveTool(ExtensionFilter); }
protected virtual Collection <Feature> SearchPlacesCore(string inputAddress, Layer layerToSearch) { return(SearchPlaceTool.SearchPlaces(inputAddress, layerToSearch)); }
public Collection <Feature> SearchPlaces(string inputAddress, Layer layerToSearch) { return(SearchPlaceTool.SearchPlaces(inputAddress, layerToSearch)); }
protected virtual bool CanSearchPlaceCore(Layer layer) { return(SearchPlaceTool.CanSearchPlace(layer)); }
public bool CanSearchPlace(Layer layer) { return(SearchPlaceTool.CanSearchPlace(layer)); }
public bool CanSearchPlace() { return(SearchPlaceTool.CanSearchPlace()); }