Configure application

The Tax Parcel Viewer application consumes services that are accessible by the general public. You can configure Tax Parcel Viewer application and share it with the general public. They can then access the application on their smartphones, tablets, and desktop computers.

Tax Parcel Viewer

To configure the Tax Parcel Viewer application, complete the following steps:

  1. Using Windows Explorer, browse to the Application\TaxParcelViewer folder and open the proxy.config file in Microsoft Notepad or another text editor. Enter the URL for each service referenced in the configuration of the application, then save the file and exit.
  2. Using Windows Explorer, browse to the Application\TaxParcelViewer\js folder and open the config.js file in Microsoft Notepad or another text editor. Replace each URL with the path to your corresponding service, the save the file and exit.
    Replace each of these URLs... With URLs for these services from your REST endpoint...
    http://yourserver/ArcGIS/rest/services/GeneralPurpose/MapServer GeneralPurpose service
    http://yourserver/ArcGIS/rest/services/ImageryHybrid/MapServer ImageryHybrid service
    http://yourserver/ArcGIS/rest/services/ParcelMarkups/FeatureServer/0 ParcelMarkups service
    http://yourserver/arcgis/rest/services/Utilities/Geometry/GeometryServer Geometry service
    http://yourserver/arcgis/rest/services/TaxParcelReporting/GPServer/TaxParcelReporting TaxParcelReports geoprocessing service
    http://yourserver/arcgis/rest/services/Utilities/PrintingTools/GPServer/Export%20Web%20Map%20Task/execute Print service
    http://yourserver/ArcGIS/rest/services/AssessmentOperations/MapServer/0 AssessmentOperations service
    http://yourserver/ArcGIS/rest/services/AssessmentOperations/MapServer/1 AssessmentOperations service
    http://yourserver/ArcGIS/rest/services/TaxParcelQuery/MapServer/0 TaxParcelQuery service

Configure the application to use the Shopping Cart (optional)

The Tax Parcel Viewer provides users a set of parcel maps and reports. When a user accesses Tax Parcel Viewer on a desktop computer or tablet device, they can generate reports for one or more parcels. These reports will be added to the application's shopping cart as they are created. The shopping cart can be configured by the local government to provide maps and reports to users free of charge, or for a fee through integration with Paypal Express Checkout.

The shopping cart can be configured to provide maps and reports to users free of charge, or for a fee through integration with the Paypal Express Checkout API.

By default, the application provides property maps and reports for free. To configure for fee collection, complete the following steps:

  1. Using Windows Explorer, browse to the Application\TaxParcelViewer\js folder and open the config.js file in Microsoft Notepad or another text editor.
  2. Modify the following parameters to enable PayPal Express Checkout.
    1. Change the PropertyReportPrice from 0 to the amount you would like to charge per property report.
    2. Change the PropertyMapPrice from 0 to the amount you would like to charge per property map.
    3. Set the currency and currency code for the shopping cart.
                              
      // -------------------------------
      //Set the price for property report
      PropertyReportPrice: 0,
      
      // -------------------------------
      //Set the price for property map
      PropertyMapPrice: 0,
      
      // -------------------------------
      //Set the currency
      Currency: "$",
      
      PayPalCurrencyCode:"USD",
      // -------------------------------
                              
                          
Top