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 install location>\DeveloperKit10.0\Samples\ServerNET. This folder contains ArcGIS_AddGraphics CSharp and VBNet folders.
- Open the folder of the language you're going to use—CSharp or VBNet—and copy the ArcGIS_AddGraphics_<language> folder to c:\inetpub\wwwroot. The <language> variable can be either 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 ArcGIS_AddGraphics_<language> folder, and click Properties. The Properties dialog box opens.
- 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 (2008 or 2010). Open the solution for the version of Visual Studio you're using. The Visual Studio version is appended to the solution file name. For example, the Visual Studio 2008 solution file is ArcGIS_AddGraphics_CSharp2008.sln and is located in the c:\inetpub\wwwroot\ArcGIS_AddGraphics_CSharp folder.
- In Solution Explorer, right-click Default.aspx, and select Set As Start Page.
- Open the Default.aspx page in Design view, open the properties window of the MapResourceManager control, and click the ellipsis next to the ResourceItems property. The ResourceItem Collection Editor dialog box opens.
- Add or change the MapResourceItem associated with an ArcGIS Server map service.
- 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 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 Solution Explorer and selecting the Add ArcGIS Identity option. Enter the identity credentials that will be used to access ArcGIS 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 checked, the identity tag will be encrypted; otherwise, the username and password is stored as clear text.
- Open the web.config file, add an <identity> element in <system.web>, set the impersonate attribute to true, and add a username and password attribute and set them to a valid user account. If you're working with ArcGIS 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.
At run time
- Browse to the viewer uniform resource locator (URL) (for example, http://localhost/ArcGIS_AddGraphics_CSharp).
- In the toolbar above the map, click Add Text Tool, and click the map. The Text tool is added to the map.
- Click Add Text Command. The Text command is drawn on the map image at the image pixel location 200,200 (from the upper left corner of the image).
- Click Add Point Tool and click the map. A green diamond point graphic is added to the map.
- Click Add Polyline Tool, click the map, and digitize a line. Double-click to finish digitizing. A green line graphic is added to the map.
- Click Add Polygon Tool, click the map, and digitize a polygon. Double-click to finish digitizing. A solid green polygon graphic is added to the map.
- Click the Clear Graphics button to clear all ArcGIS Server graphics from the map.
ArcGIS_AddGraphics_CSharp\Default.aspx | Contains the Web user interface (UI) to interact with server-side code. |
ArcGIS_AddGraphics_CSharp\Default.aspx.cs | Code behind the .aspx file. References Web ADF libraries and functionality. |
ArcGIS_AddGraphics_CSharp\App_Code\TextTool.cs | Implementation class for custom tool to create a text graphic element. |
ArcGIS_AddGraphics_CSharp\App_Code\PointTool.cs | Implementation class for custom tool to create a point graphic element. |
ArcGIS_AddGraphics_CSharp\App_Code\PolylineTool.cs | Implementation class for custom tool to create a polyline graphic element. |
ArcGIS_AddGraphics_CSharp\App_Code\PolygonTool.cs | Implementation class for custom tool to create a polygon graphic element. |
ArcGIS_AddGraphics_VBNet\Default.aspx | Contains the Web user interface (UI) to interact with server-side code. |
ArcGIS_AddGraphics_VBNet\Default.aspx.vb | Code behind the .aspx file. References Web ADF libraries and functionality. |
ArcGIS_AddGraphics_VBNet\App_Code\TextTool.vb | Implementation class for custom tool to create a text graphic element. |
ArcGIS_AddGraphics_VBNet\App_Code\PointTool.vb | Implementation class for custom tool to create a point graphic element. |
ArcGIS_AddGraphics_VBNet\App_Code\PolylineTool.vb | Implementation class for custom tool to create a polyline graphic element. |
ArcGIS_AddGraphics_VBNet\App_Code\PolygonTool.vb | Implementation class for custom tool to create a polygon graphic element. |
Download the files for all languages