Skip to content

Latest commit

 

History

History
543 lines (272 loc) · 32.8 KB

File metadata and controls

543 lines (272 loc) · 32.8 KB

Table of Contents

Analysis

This sample demonstrates measuring 3D distances between two points in a scene. The distance measurement analysis allows you to add the same measuring experience found in ArcGIS Pro, City Engine, and the ArcGIS API for JavaScript to your app. You can set the unit system of measurement (metric or imperial) and have the units automatically switch to one appropriate for the current scale. The rendering is handled internally so they do not interfere with other analyses like viewsheds.

This sample demonstrates how to perform a dynamic line of sight analysis between two moving GeoElements.

This sample demonstrates a LocationLineOfSight analysis that shows segments that are visible or obstructed along a line drawn from observer to target.

This sample demonstrates how to query a feature table, in this case returning a count, for features that are within the visible extent or that meet specified criteria.

This sample demonstrates how to display a live viewshed analysis for a moving GeoElement. The analysis is offset vertically so that the viewpoint is from the top of the GeoElement (in this case, a model of a tank).

This sample demonstrates the configurable properties of viewshed analysis, including frustum color, heading, pitch, distances, angles, and location.

This sample demonstrates how to create a LocationViewshed to display interactive viewshed results in the scene view. The viewshed observer is defined by the scene view camera to evaluate visible and obstructed areas of the scene from that location.

Data

This sample demonstrates how to synchronize offline edits with a feature service.

This sample demonstrates how to consume an Esri .geodatabase file (aka. mobile geodatabase) by using a FeatureLayer and a GeodatabaseFeatureTable.

This sample demonstrates how to open a GeoPackage and show a GeoPackage feature table in a feature layer.

This sample demonstrates how to open a shapefile stored on the device and display it as a feature layer with default symbology.

This sample demonstrates how to return features from a feature layer using an attribute query on the underlying feature table.

This sample demonstrates how to take a feature service offline by generating a geodatabase.

This sample demonstrates how to manage edits to a local geodatabase inside of transactions.

This sample demonstrates how to query features related to an identified feature.

This sample demonstrates how to open a GeoPackage and show a GeoPackage raster in a raster layer.

This sample demonstrates how to open a GeoPackage file from the local file system and list the available GeoPackageRasters and GeoPackageFeatureTables from the GeoPackage. Users can add and remove the selected datasets as RasterLayers or FeatureLayers to the map.

This sample demonstrates how to open a shapefile stored on the device, read metadata that describes the dataset, and display it as a feature layer with default symbology.

This sample demonstrates how to use a feature service in on interaction cache mode.

This sample demonstrates how to use a feature service in manual cache mode.

This sample demonstrates how to use a feature service in on interaction no cache mode.

This sample demonstrates how to query a feature table to get statistics for a specified field.

This sample demonstrates how to query a feature table to get statistics for a specified field and to group and sort the results.

This sample demonstrates how to apply a custom renderer to a shapefile displayed by a feature layer.

Geometry

This sample demonstrates how to use GeometryEngine.Buffer to create polygons from a map location and linear distance (radius). For each input location, the sample creates two buffer polygons (using the same distance) and displays them on the map using different symbols. One polygon is calculated using the planar (flat) coordinate space of the map's spatial reference. The other is created using a geodesic technique that considers the curved shape of the Earth's surface (which is generally a more accurate representation). Distortion in the map increases as you move away from the standard parallels of the spatial reference's projection. This map is in Web Mercator so areas near the equator are the most accurate. As you move the buffer location north or south from that line, you'll see a greater difference in the polygon size and shape. Planar operations are generally faster, but performance improvement may only be noticeable for large operations (buffering a great number or complex geometry). Creating buffers is a core concept in GIS proximity analysis, allowing you to visualize and locate geographic features contained within a polygon. For example, suppose you wanted to visualize areas of your city where alcohol sales are prohibited because they are within 500 meters of a school. The first step in this proximity analysis would be to generate 500 meter buffer polygons around all schools in the city. Any such businesses you find inside one of the resulting polygons are violating the law. If you are using planar buffers, make sure that the input locations and distance are suited to the spatial reference you're using. Remember that you can also create your buffers using geodesic and then project them to the spatial reference you need for display or analysis. For more information about using buffer analysis, see How buffer analysis works in the ArcGIS Pro documentation.

This sample demonstrates how to use a planar (Euclidean) buffer operation by calling GeometryEngine.Buffer to generate one or more polygons from a collection of input geometries and a corresponding collection of buffer distances. The result polygons can be returned as individual geometries or unioned into a single polygon output.

This sample demonstrates how to clip a geometry with an envelope using the GeometryEngine

This sample demonstrates how to use the GeometryEngine.ConvexHull operation to generate a polygon that encloses a series of user-tapped map points.

This sample demonstrates how to use the GeometryEngine.ConvexHull to generate convex hull polygon(s) from multiple input geometries.

This sample demonstrates simple ways to create different types of Geometry. The geometries are added as Graphics to a GraphicsOverlay and displayed in a MapView. An Envelope is used to set the Viewpoint of the MapView.

This sample demonstrates how to cut a geometry with a polyline using the GeometryEngine.

This sample demonstrates how to densify or generalize a polyline geometry. In this example, points representing a ship's location are shown at irregular intervals. You can densify the polyline to interpolate points along the line at regular intervals. Generalizing the polyline can also simplify the geometry while preserving its general shape.

This sample demonstrates how to convert between MapPoint and string representations of a point using various coordinate systems.

This sample demonstrates how to use the Geometry engine to calculate a geodesic path between two points and measure its distance.

This sample demonstrates how to use the TransformationCatalog to get a list of available DatumTransformations that can be used to project a Geometry between two different SpatialReferences, and how to use one of the transformations to perform the GeometryEngine.project operation. The TransformationCatalog is also used to set the location of files upon which grid-based transformations depend, and to find the default transformation used for the two SpatialReferences.

This sample demonstrates how to use the Geometry engine find the nearest vertex and nearest coordinate of a polygon to a point. The distance for each is shown.

This sample demonstrates how to use the GeometryEngine with a specified geographic transformation to transform a geometry from one coordinate system to another.

This sample demonstrates how to use the GeometryEngine to evaluate the spatial relationships (for example, polygon a contains line b) between geometries.

Geoprocessing

This sample demonstrates how to execute the GeoprocessingTask asynchronously to calculate a hotspot analysis based on the frequency of 911 calls. It calculates the frequency of these calls within a given study area during a specified constrained time period set between 1/1/1998 and 5/31/1998.

This sample calls a custom GeoprocessingTask to get a list of available versions for an enterprise geodatabase. The task returns a table of geodatabase version information, which is displayed in the app as a list.

This sample demonstrates how to use GeoprocessingTask to calculate a viewshed using a geoprocessing service. Click any point on the map to see all areas that are visible within a 1 kilometer radius. It may take a few seconds for the model to run and send back the results.

GraphicsOverlay

This sample demonstrates how you add graphics and set a renderer on a graphic overlays.

This sample demonstrates how to add various types of graphics to a GraphicsOverlay.

This sample demonstrates how to animate a graphic's position and follow it using a camera controller.

This sample demonstrates how to identify graphics in a graphics overlay. When you tap on a graphic on the map, you will see an alert message displayed.

This sample demonstrates how to interactively sketch and edit graphics in the map view and display them in a graphics overlay. You can sketch a variety of geometry types and undo or redo operations.

This sample demonstrates how to position graphics using different Surface Placements.

Hydrography

This sample demonstrates how to load an ENC Exchange Set, including its component cells.

This sample demonstrates how to control ENC environment settings. These settings apply to the display of all ENC content in your app.

This sample demonstrates how to select an ENC feature.

Layers

This sample demonstrates how to add an ArcGISMapImageLayer as a base layer in a map. The ArcGISMapImageLayer comes from an ArcGIS Server sample web service.

This sample demonstrates how to show a raster layer on a map based on an image service layer that has a raster function applied.

This sample demonstrates how to show a raster layer on a map based on an image service layer.

This sample demonstrates how to add an ArcGISSceneLayer as a layer in a Scene.

This sample demonstrates how to add an ArcGISTiledLayer as a base layer in a map. The ArcGISTiledLayer comes from an ArcGIS Server sample web service.

This sample demonstrates how to create a ArcGISVectorTiledLayer and bind this to a Basemap which is used in the creation of a map.

This sample demonstrates how to use blend renderer on a raster layer. You can get a hillshade blended with either a colored raster or color ramp.

This sample demonstrates how to change renderer for a feature layer. It also shows how to reset the renderer back to the default.

This sample demonstrates how to change the sub-layer renderer of an ArcGIS map image layer. A unique value renderer is applied to see different population ranges in the counties sub-layer data.

This sample demonstrates how to show or hide sublayers of a map image layer.

This sample demonstrates opening a feature collection saved as a portal item.

This sample demonstrates how to create a new feature collection with several feature collection tables. The collection is displayed in the map as a feature collection layer.

Demonstrates how to display a scene with an elevation data source. An elevation data source allows objects to be viewed in 3D, like this picture of Mt. Everest.

This sample demonstrates how to export tiles from a map server.

This sample demonstrates how to create a feature collection layer to show a query result from a service feature table.

This sample demonstrates how to show a feature layer on a map using the URL to the service.

This sample demonstrates how to apply definition expression to a feature layer for filtering features. It also shows how to reset the definition expression.

Demonstrates how to apply a dictionary renderer to a feature layer and display mil2525d graphics. The dictionary renderer creates these graphics using a mil2525d style file and the attributes attached to each feature within the geodatabase.

This sample demonstrates how to use load settings to set preferred rendering mode for feature layers, specifically static or dynamic rendering modes.

This sample demonstrates how to use load settings to change the preferred rendering mode for a scene. Static rendering mode only redraws features periodically when a sceneview is navigating, while dynamic mode dynamically re-renders as the scene moves.

This sample demonstrates how to select features in a feature layer by tapping a MapView.

This sample demonstrates how to identify WMS features and display the associated content for an identified WMS feature.

This sample demonstrates how to execute an attribute and spatial query on the sublayers of an ArcGIS map image layer. Sublayers of an ArcGISMapImageLayer may expose a ServiceFeatureTable through a Table property.This allows you to perform the same queries available when working with a table from a FeatureLayer: attribute query, spatial query, statistics query, query for related features, and so on.

This sample demonstrates how to get a non-spatial table from an ArcGIS map image layer. It shows how to query such a table, as well as how to find related features in another table. The non-spatial tables contained by a map service may contain additional information about sublayer features. Such information can be accessed by traversing table relationships defined in the service.

This sample demonstrates how to use a hillshade renderer on a raster layer. Hillshade renderers can adjust a grayscale raster (usually of terrain) according to a hypothetical sun position (azimuth and altitude).

This sample demonstrates how to use a raster layer created from a local raster file.

This sample demonstrates how to create an ImageServiceRaster, fetch the RenderingRules from the service info, and use a RenderingRule to create an ImageServiceRaster and add it to a raster layer.

This sample demonstrates how to use an RGB renderer on a raster layer. An RGB renderer is used to adjust the color bands of a multi-spectral image.

This sample demonstrates how to identify geoelements in a scene layer.

This sample demonstrates how to show labels on a feature layer

This sample demonstrates how to use stretch renderer on a raster layer.

This sample demonstrates how to select from the available styles on WMS sublayers.

This sample demonstrates how to apply a time-based parameter to a feature layer query.

This sample demonstrates how to load a web tiled layer from a non-ArcGIS service, including how to include proper attribution.

This sample demonstrates how to add a layer from a WMS service to a map.

This sample demonstrates how to enable and disable the display of layers discovered from a WMS service.

This sample demonstrates how to display a WMTS layer on a map via a Uri and WmtsLayerInfo.

Location

This sample demonstrates how you can enable location services and switch between different types of auto pan modes.

Map

This sample demonstrates how to access the Maps' LoadStatus. The LoadStatus will be considered loaded when the following are true: The Map has a valid SpatialReference and the Map has an been set to the MapView.

This sample demonstrates how to author and save a map as an ArcGIS portal item (web map). Saving a map to arcgis.com requires an ArcGIS Online login.

This sample demonstrates how to dynamically change the basemap displayed in a Map.

This sample demonstrates how to display a map with a basemap.

This sample demonstrates how to download preplanned map areas from a webmap. In the preplanned offline workflow, the author of the online map defines map areas for offline use. When these areas are created, their offline packages are created and stored online for clients to download. This is the biggest difference between on-demand and preplanned workflows since on-demand workflow data packages are generated at request time.

This sample demonstrates how to access and add bookmarks to a map.

This sample demonstrates loading a webmap in a map from a Uri.

This sample demonstrates how to open a mobile map from a map package.

This sample demonstrates how to open a scene from a Portal item. Just like Web Maps are the ArcGIS format for maps, Web Scenes are the ArcGIS format for scenes. These scenes can be stored in ArcGIS Online or Portal.

This sample demonstrates searching a portal for web maps and loading them in the map view. You can search ArcGIS Online public web maps using tag values or browse the web maps in your account. OAuth is used to authenticate with ArcGIS Online to access items in your account.

This sample displays a map at a specific viewpoint. In this sample a viewpoint is constructed from an envelope defined by minimum (x,y) and maximum (x,y) values. The map's initialViewpoint is set to this viewpoint before the map is loaded. Upon loading the map zooms to this initial area.

This sample creates a map with a standard ESRI Imagery with Labels basemap that is centered on a latitude and longitude location and zoomed into a specific level of detail.

This sample demonstrates how you can set the spatial reference on a Map and all the layers would project accordingly.

This sample demonstrates how to set the minimum and maximum scale of a Map. Setting the minimum and maximum scale for the Map can be useful in keeping the user focused at a certain level of detail.

MapView

This sample demonstrates how to filter data in layers by applying a time extent to a MapView.

This sample demonstrates different ways in which you can change the viewpoint of the MapView.

This sample demonstrates how to display and work with coordinate grid systems such as Latitude/Longitude, MGRS, UTM and USNG on a map view. This includes toggling labels visibility, changing the color of the grid lines, and changing the color of the grid labels.

This sample demonstrates how to use the DrawStatus value of the MapView to notify user that the MapView is drawing.

This sample demonstrates how to get view status for layers in a map.

This sample demonstrates how to show data from the same service side-by-side with a time offset. This allows for the comparison of data over time.

This sample demonstrates how to keep two geo views (MapView/SceneView) in sync with each other.

This sample demonstrates how to rotate a map.

This sample illustrates how to show callouts on a map in response to user interaction.

This sample demonstrates how you can tap and hold on a map to get the magnifier. You can also pan while tapping and holding to move the magnifier across the map.

This sample demonstrates how you can take screenshot of a map. Click 'capture' button to take a screenshot of the visible area of the map. Created image is shown in the sample after creation.

Network Analysis

Demonstrates how to solve a Closest Facility Task to find the closest route between a facility (hospital) and a incident (black cross).

Demonstrates how to solve a Closest Facility Task to find the closest route between facilities and incidents.

This sample demonstrates how to solve for the best route between two locations on the map and display driving directions between them.

Demonstrates how to find services areas around a point using the ServiceAreaTask. A service area shows locations that can be reached from a facility based off a certain impedance [travel time in this case]. Service areas for a two and five minute travel time are used. Barriers can also be added which can effect the service area by not letting traffic through and adding to the time to get to locations.

Search

This sample demonstrates how you can use the LocatorTask API to geocode an address and display it with a pin on the map. Tapping the pin displays the reverse-geocoded address in a callout.

This sample demonstrates how to use geocode functionality to search for points of interest, around a location or within an extent.

Security

This sample demonstrates how to authenticate with ArcGIS Server using ArcGIS Tokens to access a secure service. Accessing secured services requires a login that's been defined on the server.

This sample demonstrates how to authenticate with ArcGIS Server using ArcGIS Tokens to access a secure service. Accessing secured services requires a login that's been defined on the server.

This sample demonstrates how to authenticate with ArcGIS Online (or your own portal) using OAuth2 to access a secure web map (or the secured layers it contains). Accessing secured items requires a login on the portal (an ArcGIS Online account, for example).

Symbology

This sample demonstrates how to create a DistanceCompositeSceneSymbol with unique marker symbols to display at various distances from the camera.

This sample demonstrates how to apply extrusion to a renderer on a feature layer.

This sample demonstrates how to create picture marker symbols from a URL and embedded resources.

This sample adds a point graphic to a graphics overlay symbolized with a red circle specified via a SimpleMarkerSymbol.

This sample demonstrate how to use a unique value renderer to style different features in a feature layer with different symbols. Features do not have a symbol property for you to set, renderers should be used to define the symbol for features in feature layers. The unique value renderer allows for separate symbols to be used for features that have specific attribute values in a defined field.

This sample demonstrates how to create a simple renderer and add it to a graphics overlay. Renderers define the symbology for all graphics in a graphics overlay (unless they are overridden by setting the symbol directly on the graphic). Simple renderers can also be defined on feature layers using the same code.