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