You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Documentation/Bookmarks/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ The `BookmarksTableViewController` can be created using either an `AGSGeoView` o
8
8
9
9
Clients must set the `delegate` property and implement the `bookmarksViewController:didSelect` delegate method in order to be notified when a bookmark is selected.
10
10
11
-
The `BookmarksTableViewController` observes changes to the `map` or `scene` property on the `AGSGeoView` and also the map or scene's `bookmarks` property and will udpate the list of bookmarks accordingly.
11
+
The `BookmarksTableViewController` observes changes to the `map` or `scene` property on the `AGSGeoView` and also the map or scene's `bookmarks` property and will update the list of bookmarks accordingly.
Copy file name to clipboardExpand all lines: Documentation/Compass/README.md
+2-7Lines changed: 2 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,13 +13,8 @@ When the compass is tapped, the map orients back to north (zero bearing), the de
13
13
### Usage
14
14
15
15
```swift
16
-
17
-
let compass =Compass(mapView: mapView)
18
-
self.view.addSubview(compass)
16
+
let compass =Compass(mapView: mapView)
17
+
self.view.addSubview(compass)
19
18
```
20
19
21
20
To see it in action, try out the [Examples](../../Examples) and refer to [CompassExample.swift](../../Examples/ArcGISToolkitExamples/CompassExample.swift) in the project.
To see it in action, try out the [Examples](../../Examples) and refer to [JobManagerExample.swift](../../Examples/ArcGISToolkitExamples/JobManagerExample.swift) in the project.
A Legend View Controller displays a legend for a set of layers in a Map or Scene contained in a MapView or SceneView. A legend conveys the meaning of the symbols used to represent features in the layer. For each layer, the legend contains a patch displaying the symbology used along with some explanatory text. The Legend View Controller is dynamic and only contains information about visible layers. As layers go in and out of scale range, or are turned on/off, the legend updates to include only those layers that are visible to the user in the MapView or SceneView.
4
-
5
-
6
4
7
5
### Usage
8
6
9
7
```swift
10
-
11
-
let legendVC = LegendViewController.makeLegendViewController(geoView: mapView)
To see it in action, try out the [Examples](../../Examples) and refer to [LegendExample.swift](../../Examples/ArcGISToolkitExamples/LegendExample.swift) in the project.
Copy file name to clipboardExpand all lines: Documentation/MeasureToolbar/README.md
+2-3Lines changed: 2 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,9 +5,8 @@ The MeasureToolbar provides an all-in-one toolbar that you can add to your appli
5
5
### Usage
6
6
7
7
```swift
8
-
let measureToolbar =MeasureToolbar(mapView: mapView)
9
-
view.addSubview(measureToolbar)
8
+
let measureToolbar =MeasureToolbar(mapView: mapView)
9
+
view.addSubview(measureToolbar)
10
10
```
11
11
12
12
To see it in action, try out the [Examples](../../Examples) and refer to [MeasureExample.swift](../../Examples/ArcGISToolkitExamples/MeasureExample.swift) in the project.
Copy file name to clipboardExpand all lines: Documentation/Scalebar/README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,11 +7,11 @@ The scalebar uses geodetic calculations to provide accurate measurements for map
7
7
### Usage
8
8
9
9
```swift
10
-
let scalebar =Scalebar(mapView: mapView)
11
-
scalebar.style= .alternatingBar
12
-
scalebar.units= .metric
13
-
scalebar.alignment= .left
14
-
view.addSubview(scalebar)
10
+
let scalebar =Scalebar(mapView: mapView)
11
+
scalebar.style= .alternatingBar
12
+
scalebar.units= .metric
13
+
scalebar.alignment= .left
14
+
view.addSubview(scalebar)
15
15
```
16
16
17
17
To see it in action, try out the [Examples](../../Examples) and refer to [ScalebarExample.swift](../../Examples/ArcGISToolkitExamples/ScalebarExample.swift) in the project.
To see it in action, try out the [Examples](../../Examples) and refer to [TimeSliderExample.swift](../../Examples/ArcGISToolkitExamples/TimeSliderExample.swift) in the project.
@@ -122,5 +116,3 @@ You can customize many visual elements of the TimeSlider such as -
0 commit comments