How to use
If the sample has associated data, you will find that the sample's zip file includes a "data" folder alongside the language folders. However, you will need to update the sample to point to the location of the data once you have extracted all the files.
At design time
- Verify that the Web ADF for the .NET Framework is installed and functioning properly. For information on installing and configuring the Web ADF, consult the installation guide.
- In Windows Explorer, navigate to <ArcGIS Developer Kit install location>\Samples\ServerNET\Common_SelectBufferTool.
- Open the folder of the language you are going to use (that is, CSharp or VBNet) and copy the Common_SelectBufferTool_<language> folder to c:\inetpub\wwwroot. The <language> variable can be CSharp or VBNet.
- Open the IIS Manager from Control Panel, Administrative Tools, Internet Information Services (IIS) Manager, or Internet Information Services.
- In the console tree view on the left, navigate to Local Computer, Web Sites, Default Web Site. Expand Default Web Site, right-click the Common_SelectBufferTool_<language> folder, and click Properties. The Properties dialog box appears.
- Click the Directory tab, click the Create button in the Application Settings section, then click OK to close the Properties dialog box.
- Start Microsoft Visual Studio 2010 and open the Common_SelectBufferTool_<language><vs_version> solution (for example, Common_SelectBufferTool_CSharp2010.sln) located in c:\inetpub\wwwroot\Common_SelectBufferTool_<language>.
- In the Solution Explorer, right-click Default.aspx, and select Set As Start Page.
- Open the Default.aspx page in design view, open the properties window for the MapResourceManager control, and click the ellipsis next to the ResourceItems property. The ResourceItem Collection Editor dialog box appears.
- Add or change the MapResourceItem associated with a map service (for example, ArcGIS for Server, ArcIMS, and so on).
- If necessary, set the run time identity of the Web application by following one of the next two steps. If not necessary, proceed to Step 14.
- At design time, the identity of the user running Visual Studio is used to connect to an ArcGIS Server local data source. At run time, that identity is established by the Web application. Only one identity can be used to define access to the ArcGIS for Server local data sources in a single Web application. This identity can be explicitly defined when building the Web ADF application in Visual Studio by right-clicking the Web project in the Solution Explorer and selecting the Add ArcGIS Identity option. Add the identity credentials that will be used to access ArcGIS for Server local resources at run time. This information is added to the web.config file in a standard ASP.NET identity tag. If the Encrypt identity in web.config check box is selected, the identity tag is encrypted; otherwise, the username and password are stored as clear text.
- Open the web.config file, add an <identity> element in <system.web>, set the impersonate attribute to true, add a username and password attribute, and set them to a valid user account. If you are working with ArcGIS for Server local data sources, ensure the account has access to the geographic information system (GIS) server resources referenced in the Map control.
- Save the project.
- Click the Debug drop-down menu and click Start Debugging.
At run time
- Browse to the viewer uniform resource locator (URL), for example, http://localhost/Common_SelectBufferTool_CSharp.
- Click a layer in the Toc or use the Select Features In drop-down box to activate a layer from which to select features.
- In the toolbar above the map, click Select Features.
- Click and drag a rectangle on the map that intersects features in the active layer. Features that intersect the rectangle are added to the ElementGraphicsLayer in the Selection Graphics resource and displayed above other resources in the map. A GraphicElement is created for each feature before being added to the ElementGraphicsLayer.
- Select the Display Selection in Table check box, and use the Select Features tool to make another selection on the map. The attributes of the selected features are rendered at the bottom of the page in a GridView.
- In the toolbar above the map, click Buffer Point - Select Features. The Buffer Distance text box appears.
- Add a distance in map units, click the map to generate a buffer, and select features. The buffer polygon is rendered in semi-transparent yellow and the selected features are rendered in semi-transparent green.
- Depending on the map units, you might need to set the value of the flattening variable in the buffer tool code. A value for decimal degrees, and meters or feet is provided. The flattening value is used to determine the distance between vertices in the buffer polygon.
Common_SelectBufferTool_CSharp\Default.aspx | User interface (UI) for the Web application. |
Common_SelectBufferTool_CSharp\Default.aspx.cs | Code behind the UI. |
Common_SelectBufferTool_CSharp\App_Code\CustomControls.cs | Code file that extends the Toc control to enable more interactivity (for example, define an active layer). |
Common_SelectBufferTool_CSharp\App_Code\CustomTools.cs | Code file containing implementation of select and buffer-select tools. |
Common_SelectBufferTool_CSharp\App_Code\Utility.cs | Code file containing shared utility methods. |
Common_SelectBufferTool_VBNet\Default.aspx | User interface (UI) for the Web application. |
Common_SelectBufferTool_VBNet\Default.aspx.vb | Code behind the UI. |
Common_SelectBufferTool_VBNet\App_Code\CustomControls.vb | Code file that extends the Toc control to enable more interactivity (for example, define an active layer). |
Common_SelectBufferTool_VBNet\App_Code\CustomTools.vb | Code file containing implementation of select and buffer-select tools. |
Common_SelectBufferTool_VBNet\App_Code\Utility.vb | Code file containing shared utility methods. |
Download the files for all languages