forked from mapbox/mapbox-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex-all.html
More file actions
2487 lines (2487 loc) · 278 KB
/
Copy pathindex-all.html
File metadata and controls
2487 lines (2487 loc) · 278 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_74) on Mon Aug 29 13:55:25 EDT 2016 -->
<title>Index (libjava API)</title>
<meta name="date" content="2016-08-29">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Index (libjava API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="overview-summary.html">Overview</a></li>
<li>Package</li>
<li>Class</li>
<li><a href="overview-tree.html">Tree</a></li>
<li><a href="deprecated-list.html">Deprecated</a></li>
<li class="navBarCell1Rev">Index</li>
<li><a href="help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="index.html?index-all.html" target="_top">Frames</a></li>
<li><a href="index-all.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="contentContainer"><a href="#I:A">A</a> <a href="#I:B">B</a> <a href="#I:C">C</a> <a href="#I:D">D</a> <a href="#I:E">E</a> <a href="#I:F">F</a> <a href="#I:G">G</a> <a href="#I:H">H</a> <a href="#I:I">I</a> <a href="#I:J">J</a> <a href="#I:K">K</a> <a href="#I:L">L</a> <a href="#I:M">M</a> <a href="#I:O">O</a> <a href="#I:P">P</a> <a href="#I:R">R</a> <a href="#I:S">S</a> <a href="#I:T">T</a> <a href="#I:U">U</a> <a href="#I:V">V</a> <a href="#I:W">W</a> <a name="I:A">
<!-- -->
</a>
<h2 class="title">A</h2>
<dl>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/Feature.html#addBooleanProperty-java.lang.String-java.lang.Boolean-">addBooleanProperty(String, Boolean)</a></span> - Method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/Feature.html" title="class in com.mapbox.services.commons.geojson">Feature</a></dt>
<dd>
<div class="block">Convenience method to add a Boolean member.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/Feature.html#addCharacterProperty-java.lang.String-java.lang.Character-">addCharacterProperty(String, Character)</a></span> - Method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/Feature.html" title="class in com.mapbox.services.commons.geojson">Feature</a></dt>
<dd>
<div class="block">Convenience method to add a Character member.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/Feature.html#addNumberProperty-java.lang.String-java.lang.Number-">addNumberProperty(String, Number)</a></span> - Method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/Feature.html" title="class in com.mapbox.services.commons.geojson">Feature</a></dt>
<dd>
<div class="block">Convenience method to add a Number member.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/Feature.html#addProperty-java.lang.String-com.google.gson.JsonElement-">addProperty(String, JsonElement)</a></span> - Method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/Feature.html" title="class in com.mapbox.services.commons.geojson">Feature</a></dt>
<dd>
<div class="block">Convenience method to add a JsonElement member.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/Feature.html#addStringProperty-java.lang.String-java.lang.String-">addStringProperty(String, String)</a></span> - Method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/Feature.html" title="class in com.mapbox.services.commons.geojson">Feature</a></dt>
<dd>
<div class="block">Convenience method to add a String member.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/turf/TurfMeasurement.html#along-com.mapbox.services.commons.geojson.LineString-double-java.lang.String-">along(LineString, double, String)</a></span> - Static method in class com.mapbox.services.commons.turf.<a href="com/mapbox/services/commons/turf/TurfMeasurement.html" title="class in com.mapbox.services.commons.turf">TurfMeasurement</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v4/models/DirectionsRoute.html#asLineString-int-">asLineString(int)</a></span> - Method in class com.mapbox.services.directions.v4.models.<a href="com/mapbox/services/directions/v4/models/DirectionsRoute.html" title="class in com.mapbox.services.directions.v4.models">DirectionsRoute</a></dt>
<dd>
<div class="block">Gets a GeoJSON LineString which can be used to get route coordinates useful for
drawing on a map view.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v5/models/DirectionsWaypoint.html#asPosition--">asPosition()</a></span> - Method in class com.mapbox.services.directions.v5.models.<a href="com/mapbox/services/directions/v5/models/DirectionsWaypoint.html" title="class in com.mapbox.services.directions.v5.models">DirectionsWaypoint</a></dt>
<dd>
<div class="block">Converts double array <a href="com/mapbox/services/directions/v5/models/DirectionsWaypoint.html#getLocation--"><code>DirectionsWaypoint.getLocation()</code></a> to a <a href="com/mapbox/services/commons/models/Position.html" title="class in com.mapbox.services.commons.models"><code>Position</code></a>.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v5/models/StepIntersection.html#asPosition--">asPosition()</a></span> - Method in class com.mapbox.services.directions.v5.models.<a href="com/mapbox/services/directions/v5/models/StepIntersection.html" title="class in com.mapbox.services.directions.v5.models">StepIntersection</a></dt>
<dd>
<div class="block">Converts double array <a href="com/mapbox/services/directions/v5/models/StepIntersection.html#getLocation--"><code>StepIntersection.getLocation()</code></a> to a <a href="com/mapbox/services/commons/models/Position.html" title="class in com.mapbox.services.commons.models"><code>Position</code></a>.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v5/models/StepManeuver.html#asPosition--">asPosition()</a></span> - Method in class com.mapbox.services.directions.v5.models.<a href="com/mapbox/services/directions/v5/models/StepManeuver.html" title="class in com.mapbox.services.directions.v5.models">StepManeuver</a></dt>
<dd>
<div class="block">Converts double array <a href="com/mapbox/services/directions/v5/models/StepManeuver.html#getLocation--"><code>StepManeuver.getLocation()</code></a> to a <a href="com/mapbox/services/commons/models/Position.html" title="class in com.mapbox.services.commons.models"><code>Position</code></a>.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/geocoding/v5/models/CarmenFeature.html#asPosition--">asPosition()</a></span> - Method in class com.mapbox.services.geocoding.v5.models.<a href="com/mapbox/services/geocoding/v5/models/CarmenFeature.html" title="class in com.mapbox.services.geocoding.v5.models">CarmenFeature</a></dt>
<dd>
<div class="block">Util to transform center into a Position object</div>
</dd>
</dl>
<a name="I:B">
<!-- -->
</a>
<h2 class="title">B</h2>
<dl>
<dt><span class="memberNameLink"><a href="com/mapbox/services/Constants.html#BASE_API_URL">BASE_API_URL</a></span> - Static variable in class com.mapbox.services.<a href="com/mapbox/services/Constants.html" title="class in com.mapbox.services">Constants</a></dt>
<dd>
<div class="block">Base URL for all API calls, not hardcoded to enable testing</div>
</dd>
<dt><a href="com/mapbox/services/commons/geojson/BaseFeatureCollection.html" title="class in com.mapbox.services.commons.geojson"><span class="typeNameLink">BaseFeatureCollection</span></a> - Class in <a href="com/mapbox/services/commons/geojson/package-summary.html">com.mapbox.services.commons.geojson</a></dt>
<dd>
<div class="block">Shared by FeatureCollection and CarmenFeatureCollection</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/BaseFeatureCollection.html#BaseFeatureCollection--">BaseFeatureCollection()</a></span> - Constructor for class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/BaseFeatureCollection.html" title="class in com.mapbox.services.commons.geojson">BaseFeatureCollection</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/turf/TurfMeasurement.html#bearing-com.mapbox.services.commons.models.Position-com.mapbox.services.commons.models.Position-">bearing(Position, Position)</a></span> - Static method in class com.mapbox.services.commons.turf.<a href="com/mapbox/services/commons/turf/TurfMeasurement.html" title="class in com.mapbox.services.commons.turf">TurfMeasurement</a></dt>
<dd>
<div class="block">Takes two positions and finds the geographic bearing between them.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/turf/TurfMeasurement.html#bearing-com.mapbox.services.commons.geojson.Point-com.mapbox.services.commons.geojson.Point-">bearing(Point, Point)</a></span> - Static method in class com.mapbox.services.commons.turf.<a href="com/mapbox/services/commons/turf/TurfMeasurement.html" title="class in com.mapbox.services.commons.turf">TurfMeasurement</a></dt>
<dd>
<div class="block">Takes two points and finds the geographic bearing between them.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/MapboxBuilder.html#build--">build()</a></span> - Method in class com.mapbox.services.commons.<a href="com/mapbox/services/commons/MapboxBuilder.html" title="class in com.mapbox.services.commons">MapboxBuilder</a></dt>
<dd>
<div class="block">The builder.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v4/MapboxDirections.Builder.html#build--">build()</a></span> - Method in class com.mapbox.services.directions.v4.<a href="com/mapbox/services/directions/v4/MapboxDirections.Builder.html" title="class in com.mapbox.services.directions.v4">MapboxDirections.Builder</a></dt>
<dd>
<div class="block">Build the MapboxDirections</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v5/MapboxDirections.Builder.html#build--">build()</a></span> - Method in class com.mapbox.services.directions.v5.<a href="com/mapbox/services/directions/v5/MapboxDirections.Builder.html" title="class in com.mapbox.services.directions.v5">MapboxDirections.Builder</a></dt>
<dd>
<div class="block">Build method</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/geocoding/v5/MapboxGeocoding.Builder.html#build--">build()</a></span> - Method in class com.mapbox.services.geocoding.v5.<a href="com/mapbox/services/geocoding/v5/MapboxGeocoding.Builder.html" title="class in com.mapbox.services.geocoding.v5">MapboxGeocoding.Builder</a></dt>
<dd>
<div class="block">Build method</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/mapmatching/v4/MapboxMapMatching.Builder.html#build--">build()</a></span> - Method in class com.mapbox.services.mapmatching.v4.<a href="com/mapbox/services/mapmatching/v4/MapboxMapMatching.Builder.html" title="class in com.mapbox.services.mapmatching.v4">MapboxMapMatching.Builder</a></dt>
<dd>
<div class="block">Builder method</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/staticimage/v1/MapboxStaticImage.Builder.html#build--">build()</a></span> - Method in class com.mapbox.services.staticimage.v1.<a href="com/mapbox/services/staticimage/v1/MapboxStaticImage.Builder.html" title="class in com.mapbox.services.staticimage.v1">MapboxStaticImage.Builder</a></dt>
<dd>
<div class="block">Build the client when all user parameters have been set.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v4/MapboxDirections.Builder.html#Builder--">Builder()</a></span> - Constructor for class com.mapbox.services.directions.v4.<a href="com/mapbox/services/directions/v4/MapboxDirections.Builder.html" title="class in com.mapbox.services.directions.v4">MapboxDirections.Builder</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v5/MapboxDirections.Builder.html#Builder--">Builder()</a></span> - Constructor for class com.mapbox.services.directions.v5.<a href="com/mapbox/services/directions/v5/MapboxDirections.Builder.html" title="class in com.mapbox.services.directions.v5">MapboxDirections.Builder</a></dt>
<dd>
<div class="block">Constructor</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/geocoding/v5/MapboxGeocoding.Builder.html#Builder--">Builder()</a></span> - Constructor for class com.mapbox.services.geocoding.v5.<a href="com/mapbox/services/geocoding/v5/MapboxGeocoding.Builder.html" title="class in com.mapbox.services.geocoding.v5">MapboxGeocoding.Builder</a></dt>
<dd>
<div class="block">Constructor</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/mapmatching/v4/MapboxMapMatching.Builder.html#Builder--">Builder()</a></span> - Constructor for class com.mapbox.services.mapmatching.v4.<a href="com/mapbox/services/mapmatching/v4/MapboxMapMatching.Builder.html" title="class in com.mapbox.services.mapmatching.v4">MapboxMapMatching.Builder</a></dt>
<dd>
<div class="block">Constructor</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/staticimage/v1/MapboxStaticImage.Builder.html#Builder--">Builder()</a></span> - Constructor for class com.mapbox.services.staticimage.v1.<a href="com/mapbox/services/staticimage/v1/MapboxStaticImage.Builder.html" title="class in com.mapbox.services.staticimage.v1">MapboxStaticImage.Builder</a></dt>
<dd> </dd>
</dl>
<a name="I:C">
<!-- -->
</a>
<h2 class="title">C</h2>
<dl>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/MapboxService.html#cancelCall--">cancelCall()</a></span> - Method in class com.mapbox.services.commons.<a href="com/mapbox/services/commons/MapboxService.html" title="class in com.mapbox.services.commons">MapboxService</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v4/MapboxDirections.html#cancelCall--">cancelCall()</a></span> - Method in class com.mapbox.services.directions.v4.<a href="com/mapbox/services/directions/v4/MapboxDirections.html" title="class in com.mapbox.services.directions.v4">MapboxDirections</a></dt>
<dd>
<div class="block">Cancel the call</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v5/MapboxDirections.html#cancelCall--">cancelCall()</a></span> - Method in class com.mapbox.services.directions.v5.<a href="com/mapbox/services/directions/v5/MapboxDirections.html" title="class in com.mapbox.services.directions.v5">MapboxDirections</a></dt>
<dd>
<div class="block">Cancel the call</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/geocoding/v5/MapboxGeocoding.html#cancelCall--">cancelCall()</a></span> - Method in class com.mapbox.services.geocoding.v5.<a href="com/mapbox/services/geocoding/v5/MapboxGeocoding.html" title="class in com.mapbox.services.geocoding.v5">MapboxGeocoding</a></dt>
<dd>
<div class="block">Cancel the call</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/mapmatching/v4/MapboxMapMatching.html#cancelCall--">cancelCall()</a></span> - Method in class com.mapbox.services.mapmatching.v4.<a href="com/mapbox/services/mapmatching/v4/MapboxMapMatching.html" title="class in com.mapbox.services.mapmatching.v4">MapboxMapMatching</a></dt>
<dd>
<div class="block">Cancel the call</div>
</dd>
<dt><a href="com/mapbox/services/geocoding/v5/models/CarmenContext.html" title="class in com.mapbox.services.geocoding.v5.models"><span class="typeNameLink">CarmenContext</span></a> - Class in <a href="com/mapbox/services/geocoding/v5/models/package-summary.html">com.mapbox.services.geocoding.v5.models</a></dt>
<dd>
<div class="block">Array representing a hierarchy of parents.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/geocoding/v5/models/CarmenContext.html#CarmenContext--">CarmenContext()</a></span> - Constructor for class com.mapbox.services.geocoding.v5.models.<a href="com/mapbox/services/geocoding/v5/models/CarmenContext.html" title="class in com.mapbox.services.geocoding.v5.models">CarmenContext</a></dt>
<dd> </dd>
<dt><a href="com/mapbox/services/geocoding/v5/models/CarmenFeature.html" title="class in com.mapbox.services.geocoding.v5.models"><span class="typeNameLink">CarmenFeature</span></a> - Class in <a href="com/mapbox/services/geocoding/v5/models/package-summary.html">com.mapbox.services.geocoding.v5.models</a></dt>
<dd>
<div class="block">The Features key in the geocoding API response contains the majority of information you'll want
to use.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/geocoding/v5/models/CarmenFeature.html#CarmenFeature--">CarmenFeature()</a></span> - Constructor for class com.mapbox.services.geocoding.v5.models.<a href="com/mapbox/services/geocoding/v5/models/CarmenFeature.html" title="class in com.mapbox.services.geocoding.v5.models">CarmenFeature</a></dt>
<dd> </dd>
<dt><a href="com/mapbox/services/geocoding/v5/models/CarmenFeatureCollection.html" title="class in com.mapbox.services.geocoding.v5.models"><span class="typeNameLink">CarmenFeatureCollection</span></a> - Class in <a href="com/mapbox/services/geocoding/v5/models/package-summary.html">com.mapbox.services.geocoding.v5.models</a></dt>
<dd>
<div class="block">The Geocoding API hierarchy starts with this class.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/geocoding/v5/models/CarmenFeatureCollection.html#CarmenFeatureCollection-java.util.List-">CarmenFeatureCollection(List<CarmenFeature>)</a></span> - Constructor for class com.mapbox.services.geocoding.v5.models.<a href="com/mapbox/services/geocoding/v5/models/CarmenFeatureCollection.html" title="class in com.mapbox.services.geocoding.v5.models">CarmenFeatureCollection</a></dt>
<dd>
<div class="block">Protected constructor.</div>
</dd>
<dt><a href="com/mapbox/services/geocoding/v5/gson/CarmenGeometryDeserializer.html" title="class in com.mapbox.services.geocoding.v5.gson"><span class="typeNameLink">CarmenGeometryDeserializer</span></a> - Class in <a href="com/mapbox/services/geocoding/v5/gson/package-summary.html">com.mapbox.services.geocoding.v5.gson</a></dt>
<dd>
<div class="block">A custom deserializer for Gson, used for the Geocoder.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/geocoding/v5/gson/CarmenGeometryDeserializer.html#CarmenGeometryDeserializer--">CarmenGeometryDeserializer()</a></span> - Constructor for class com.mapbox.services.geocoding.v5.gson.<a href="com/mapbox/services/geocoding/v5/gson/CarmenGeometryDeserializer.html" title="class in com.mapbox.services.geocoding.v5.gson">CarmenGeometryDeserializer</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/MapboxService.html#cloneCall--">cloneCall()</a></span> - Method in class com.mapbox.services.commons.<a href="com/mapbox/services/commons/MapboxService.html" title="class in com.mapbox.services.commons">MapboxService</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v4/MapboxDirections.html#cloneCall--">cloneCall()</a></span> - Method in class com.mapbox.services.directions.v4.<a href="com/mapbox/services/directions/v4/MapboxDirections.html" title="class in com.mapbox.services.directions.v4">MapboxDirections</a></dt>
<dd>
<div class="block">clone the call</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v5/MapboxDirections.html#cloneCall--">cloneCall()</a></span> - Method in class com.mapbox.services.directions.v5.<a href="com/mapbox/services/directions/v5/MapboxDirections.html" title="class in com.mapbox.services.directions.v5">MapboxDirections</a></dt>
<dd>
<div class="block">clone the call</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/geocoding/v5/MapboxGeocoding.html#cloneCall--">cloneCall()</a></span> - Method in class com.mapbox.services.geocoding.v5.<a href="com/mapbox/services/geocoding/v5/MapboxGeocoding.html" title="class in com.mapbox.services.geocoding.v5">MapboxGeocoding</a></dt>
<dd>
<div class="block">clone the call</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/mapmatching/v4/MapboxMapMatching.html#cloneCall--">cloneCall()</a></span> - Method in class com.mapbox.services.mapmatching.v4.<a href="com/mapbox/services/mapmatching/v4/MapboxMapMatching.html" title="class in com.mapbox.services.mapmatching.v4">MapboxMapMatching</a></dt>
<dd>
<div class="block">clone the call</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/turf/TurfInvariant.html#collectionOf-com.mapbox.services.commons.geojson.FeatureCollection-java.lang.String-java.lang.String-">collectionOf(FeatureCollection, String, String)</a></span> - Static method in class com.mapbox.services.commons.turf.<a href="com/mapbox/services/commons/turf/TurfInvariant.html" title="class in com.mapbox.services.commons.turf">TurfInvariant</a></dt>
<dd>
<div class="block">Enforce expectations about types of <a href="com/mapbox/services/commons/geojson/FeatureCollection.html" title="class in com.mapbox.services.commons.geojson"><code>FeatureCollection</code></a> inputs for Turf.</div>
</dd>
<dt><a href="com/mapbox/services/package-summary.html">com.mapbox.services</a> - package com.mapbox.services</dt>
<dd>
<div class="block">Contains the Mapbox Java Services classes.</div>
</dd>
<dt><a href="com/mapbox/services/commons/package-summary.html">com.mapbox.services.commons</a> - package com.mapbox.services.commons</dt>
<dd>
<div class="block">Contains the Mapbox Java Services classes.</div>
</dd>
<dt><a href="com/mapbox/services/commons/geojson/package-summary.html">com.mapbox.services.commons.geojson</a> - package com.mapbox.services.commons.geojson</dt>
<dd>
<div class="block">Contains the Mapbox Java Services classes.</div>
</dd>
<dt><a href="com/mapbox/services/commons/geojson/custom/package-summary.html">com.mapbox.services.commons.geojson.custom</a> - package com.mapbox.services.commons.geojson.custom</dt>
<dd>
<div class="block">Contains the Mapbox Java Services classes.</div>
</dd>
<dt><a href="com/mapbox/services/commons/models/package-summary.html">com.mapbox.services.commons.models</a> - package com.mapbox.services.commons.models</dt>
<dd>
<div class="block">Contains the Mapbox Java Services classes.</div>
</dd>
<dt><a href="com/mapbox/services/commons/tidy/package-summary.html">com.mapbox.services.commons.tidy</a> - package com.mapbox.services.commons.tidy</dt>
<dd>
<div class="block">Contains the Mapbox Java Services classes.</div>
</dd>
<dt><a href="com/mapbox/services/commons/turf/package-summary.html">com.mapbox.services.commons.turf</a> - package com.mapbox.services.commons.turf</dt>
<dd>
<div class="block">Contains the Mapbox Java Services classes.</div>
</dd>
<dt><a href="com/mapbox/services/commons/turf/models/package-summary.html">com.mapbox.services.commons.turf.models</a> - package com.mapbox.services.commons.turf.models</dt>
<dd>
<div class="block">Contains the Mapbox Java Services classes.</div>
</dd>
<dt><a href="com/mapbox/services/commons/utils/package-summary.html">com.mapbox.services.commons.utils</a> - package com.mapbox.services.commons.utils</dt>
<dd>
<div class="block">Contains the Mapbox Java Services classes.</div>
</dd>
<dt><a href="com/mapbox/services/directions/v4/package-summary.html">com.mapbox.services.directions.v4</a> - package com.mapbox.services.directions.v4</dt>
<dd>
<div class="block">Contains the Mapbox Java Services classes.</div>
</dd>
<dt><a href="com/mapbox/services/directions/v4/models/package-summary.html">com.mapbox.services.directions.v4.models</a> - package com.mapbox.services.directions.v4.models</dt>
<dd>
<div class="block">Contains the Mapbox Java Services classes.</div>
</dd>
<dt><a href="com/mapbox/services/directions/v5/package-summary.html">com.mapbox.services.directions.v5</a> - package com.mapbox.services.directions.v5</dt>
<dd>
<div class="block">Contains the Mapbox Java Services classes.</div>
</dd>
<dt><a href="com/mapbox/services/directions/v5/models/package-summary.html">com.mapbox.services.directions.v5.models</a> - package com.mapbox.services.directions.v5.models</dt>
<dd>
<div class="block">Contains the Mapbox Java Services classes.</div>
</dd>
<dt><a href="com/mapbox/services/geocoding/v5/package-summary.html">com.mapbox.services.geocoding.v5</a> - package com.mapbox.services.geocoding.v5</dt>
<dd>
<div class="block">Contains the Mapbox Java Services classes.</div>
</dd>
<dt><a href="com/mapbox/services/geocoding/v5/gson/package-summary.html">com.mapbox.services.geocoding.v5.gson</a> - package com.mapbox.services.geocoding.v5.gson</dt>
<dd>
<div class="block">Contains the Mapbox Java Services classes.</div>
</dd>
<dt><a href="com/mapbox/services/geocoding/v5/models/package-summary.html">com.mapbox.services.geocoding.v5.models</a> - package com.mapbox.services.geocoding.v5.models</dt>
<dd>
<div class="block">Contains the Mapbox Java Services classes.</div>
</dd>
<dt><a href="com/mapbox/services/mapmatching/v4/package-summary.html">com.mapbox.services.mapmatching.v4</a> - package com.mapbox.services.mapmatching.v4</dt>
<dd>
<div class="block">Contains the Mapbox Java Services classes.</div>
</dd>
<dt><a href="com/mapbox/services/mapmatching/v4/gson/package-summary.html">com.mapbox.services.mapmatching.v4.gson</a> - package com.mapbox.services.mapmatching.v4.gson</dt>
<dd>
<div class="block">Contains the Mapbox Java Services classes.</div>
</dd>
<dt><a href="com/mapbox/services/mapmatching/v4/models/package-summary.html">com.mapbox.services.mapmatching.v4.models</a> - package com.mapbox.services.mapmatching.v4.models</dt>
<dd>
<div class="block">Contains the Mapbox Java Services classes.</div>
</dd>
<dt><a href="com/mapbox/services/navigation/v5/package-summary.html">com.mapbox.services.navigation.v5</a> - package com.mapbox.services.navigation.v5</dt>
<dd>
<div class="block">Contains the Mapbox Java Services classes.</div>
</dd>
<dt><a href="com/mapbox/services/staticimage/v1/package-summary.html">com.mapbox.services.staticimage.v1</a> - package com.mapbox.services.staticimage.v1</dt>
<dd>
<div class="block">Contains the Mapbox Java Services classes.</div>
</dd>
<dt><a href="com/mapbox/services/Constants.html" title="class in com.mapbox.services"><span class="typeNameLink">Constants</span></a> - Class in <a href="com/mapbox/services/package-summary.html">com.mapbox.services</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/Constants.html#Constants--">Constants()</a></span> - Constructor for class com.mapbox.services.<a href="com/mapbox/services/Constants.html" title="class in com.mapbox.services">Constants</a></dt>
<dd> </dd>
</dl>
<a name="I:D">
<!-- -->
</a>
<h2 class="title">D</h2>
<dl>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/tidy/Tidy.html#DATE_FORMAT">DATE_FORMAT</a></span> - Static variable in class com.mapbox.services.commons.tidy.<a href="com/mapbox/services/commons/tidy/Tidy.html" title="class in com.mapbox.services.commons.tidy">Tidy</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/utils/PolylineUtils.html#decode-java.lang.String-int-">decode(String, int)</a></span> - Static method in class com.mapbox.services.commons.utils.<a href="com/mapbox/services/commons/utils/PolylineUtils.html" title="class in com.mapbox.services.commons.utils">PolylineUtils</a></dt>
<dd>
<div class="block">Decodes an encoded path string into a sequence of Positions.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/navigation/v5/RouteUtils.html#DEFAULT_OFF_ROUTE_THRESHOLD_KM">DEFAULT_OFF_ROUTE_THRESHOLD_KM</a></span> - Static variable in class com.mapbox.services.navigation.v5.<a href="com/mapbox/services/navigation/v5/RouteUtils.html" title="class in com.mapbox.services.navigation.v5">RouteUtils</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/custom/GeometryDeserializer.html#deserialize-com.google.gson.JsonElement-java.lang.reflect.Type-com.google.gson.JsonDeserializationContext-">deserialize(JsonElement, Type, JsonDeserializationContext)</a></span> - Method in class com.mapbox.services.commons.geojson.custom.<a href="com/mapbox/services/commons/geojson/custom/GeometryDeserializer.html" title="class in com.mapbox.services.commons.geojson.custom">GeometryDeserializer</a></dt>
<dd>
<div class="block">Required to handle the "Unable to invoke no-args constructor for interface <a href="com/mapbox/services/commons/geojson/Geometry.html" title="interface in com.mapbox.services.commons.geojson"><code>Geometry</code></a>
error that Gson shows when trying to deserialize a list of <a href="com/mapbox/services/commons/geojson/Geometry.html" title="interface in com.mapbox.services.commons.geojson"><code>Geometry</code></a>.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/custom/PositionDeserializer.html#deserialize-com.google.gson.JsonElement-java.lang.reflect.Type-com.google.gson.JsonDeserializationContext-">deserialize(JsonElement, Type, JsonDeserializationContext)</a></span> - Method in class com.mapbox.services.commons.geojson.custom.<a href="com/mapbox/services/commons/geojson/custom/PositionDeserializer.html" title="class in com.mapbox.services.commons.geojson.custom">PositionDeserializer</a></dt>
<dd>
<div class="block">Required to handle the "Expected BEGIN_OBJECT but was BEGIN_ARRAY" error that Gson would show
otherwise.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/geocoding/v5/gson/CarmenGeometryDeserializer.html#deserialize-com.google.gson.JsonElement-java.lang.reflect.Type-com.google.gson.JsonDeserializationContext-">deserialize(JsonElement, Type, JsonDeserializationContext)</a></span> - Method in class com.mapbox.services.geocoding.v5.gson.<a href="com/mapbox/services/geocoding/v5/gson/CarmenGeometryDeserializer.html" title="class in com.mapbox.services.geocoding.v5.gson">CarmenGeometryDeserializer</a></dt>
<dd>
<div class="block">A custom deserializer for Gson, used for the Geocoder.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/mapmatching/v4/gson/MapMatchingGeometryDeserializer.html#deserialize-com.google.gson.JsonElement-java.lang.reflect.Type-com.google.gson.JsonDeserializationContext-">deserialize(JsonElement, Type, JsonDeserializationContext)</a></span> - Method in class com.mapbox.services.mapmatching.v4.gson.<a href="com/mapbox/services/mapmatching/v4/gson/MapMatchingGeometryDeserializer.html" title="class in com.mapbox.services.mapmatching.v4.gson">MapMatchingGeometryDeserializer</a></dt>
<dd>
<div class="block">A custom deserializer that assumes a Polyline string.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/turf/TurfMeasurement.html#destination-com.mapbox.services.commons.models.Position-double-double-java.lang.String-">destination(Position, double, double, String)</a></span> - Static method in class com.mapbox.services.commons.turf.<a href="com/mapbox/services/commons/turf/TurfMeasurement.html" title="class in com.mapbox.services.commons.turf">TurfMeasurement</a></dt>
<dd>
<div class="block">Takes a Position and calculates the location of a destination point given a distance in
degrees, radians, miles, or kilometers; and bearing in degrees.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/turf/TurfMeasurement.html#destination-com.mapbox.services.commons.geojson.Point-double-double-java.lang.String-">destination(Point, double, double, String)</a></span> - Static method in class com.mapbox.services.commons.turf.<a href="com/mapbox/services/commons/turf/TurfMeasurement.html" title="class in com.mapbox.services.commons.turf">TurfMeasurement</a></dt>
<dd>
<div class="block">Takes a Point and calculates the location of a destination point given a distance in
degrees, radians, miles, or kilometers; and bearing in degrees.</div>
</dd>
<dt><a href="com/mapbox/services/directions/v4/DirectionsCriteria.html" title="class in com.mapbox.services.directions.v4"><span class="typeNameLink">DirectionsCriteria</span></a> - Class in <a href="com/mapbox/services/directions/v4/package-summary.html">com.mapbox.services.directions.v4</a></dt>
<dd>
<div class="block">Constants used to customize the directions request.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v4/DirectionsCriteria.html#DirectionsCriteria--">DirectionsCriteria()</a></span> - Constructor for class com.mapbox.services.directions.v4.<a href="com/mapbox/services/directions/v4/DirectionsCriteria.html" title="class in com.mapbox.services.directions.v4">DirectionsCriteria</a></dt>
<dd> </dd>
<dt><a href="com/mapbox/services/directions/v5/DirectionsCriteria.html" title="class in com.mapbox.services.directions.v5"><span class="typeNameLink">DirectionsCriteria</span></a> - Class in <a href="com/mapbox/services/directions/v5/package-summary.html">com.mapbox.services.directions.v5</a></dt>
<dd>
<div class="block">Constants used to customize the directions request.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v5/DirectionsCriteria.html#DirectionsCriteria--">DirectionsCriteria()</a></span> - Constructor for class com.mapbox.services.directions.v5.<a href="com/mapbox/services/directions/v5/DirectionsCriteria.html" title="class in com.mapbox.services.directions.v5">DirectionsCriteria</a></dt>
<dd> </dd>
<dt><a href="com/mapbox/services/directions/v4/models/DirectionsFeature.html" title="class in com.mapbox.services.directions.v4.models"><span class="typeNameLink">DirectionsFeature</span></a> - Class in <a href="com/mapbox/services/directions/v4/models/package-summary.html">com.mapbox.services.directions.v4.models</a></dt>
<dd>
<div class="block">Defines a <a href="http://geojson.org/geojson-spec.html#feature-objects">GeoJSON Feature Object</a>
with a Point geometry type.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v4/models/DirectionsFeature.html#DirectionsFeature--">DirectionsFeature()</a></span> - Constructor for class com.mapbox.services.directions.v4.models.<a href="com/mapbox/services/directions/v4/models/DirectionsFeature.html" title="class in com.mapbox.services.directions.v4.models">DirectionsFeature</a></dt>
<dd> </dd>
<dt><a href="com/mapbox/services/directions/v4/models/DirectionsResponse.html" title="class in com.mapbox.services.directions.v4.models"><span class="typeNameLink">DirectionsResponse</span></a> - Class in <a href="com/mapbox/services/directions/v4/models/package-summary.html">com.mapbox.services.directions.v4.models</a></dt>
<dd>
<div class="block">The response to a directions request.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v4/models/DirectionsResponse.html#DirectionsResponse--">DirectionsResponse()</a></span> - Constructor for class com.mapbox.services.directions.v4.models.<a href="com/mapbox/services/directions/v4/models/DirectionsResponse.html" title="class in com.mapbox.services.directions.v4.models">DirectionsResponse</a></dt>
<dd> </dd>
<dt><a href="com/mapbox/services/directions/v5/models/DirectionsResponse.html" title="class in com.mapbox.services.directions.v5.models"><span class="typeNameLink">DirectionsResponse</span></a> - Class in <a href="com/mapbox/services/directions/v5/models/package-summary.html">com.mapbox.services.directions.v5.models</a></dt>
<dd>
<div class="block">The response to a directions request.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v5/models/DirectionsResponse.html#DirectionsResponse-java.util.List-java.util.List-">DirectionsResponse(List<DirectionsRoute>, List<DirectionsWaypoint>)</a></span> - Constructor for class com.mapbox.services.directions.v5.models.<a href="com/mapbox/services/directions/v5/models/DirectionsResponse.html" title="class in com.mapbox.services.directions.v5.models">DirectionsResponse</a></dt>
<dd> </dd>
<dt><a href="com/mapbox/services/directions/v4/models/DirectionsRoute.html" title="class in com.mapbox.services.directions.v4.models"><span class="typeNameLink">DirectionsRoute</span></a> - Class in <a href="com/mapbox/services/directions/v4/models/package-summary.html">com.mapbox.services.directions.v4.models</a></dt>
<dd>
<div class="block">Gives detailed information about an individual route such as the duration, distance and geometry.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v4/models/DirectionsRoute.html#DirectionsRoute--">DirectionsRoute()</a></span> - Constructor for class com.mapbox.services.directions.v4.models.<a href="com/mapbox/services/directions/v4/models/DirectionsRoute.html" title="class in com.mapbox.services.directions.v4.models">DirectionsRoute</a></dt>
<dd> </dd>
<dt><a href="com/mapbox/services/directions/v5/models/DirectionsRoute.html" title="class in com.mapbox.services.directions.v5.models"><span class="typeNameLink">DirectionsRoute</span></a> - Class in <a href="com/mapbox/services/directions/v5/models/package-summary.html">com.mapbox.services.directions.v5.models</a></dt>
<dd>
<div class="block">Gives detailed information about an individual route such as the duration, distance and geometry.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v5/models/DirectionsRoute.html#DirectionsRoute--">DirectionsRoute()</a></span> - Constructor for class com.mapbox.services.directions.v5.models.<a href="com/mapbox/services/directions/v5/models/DirectionsRoute.html" title="class in com.mapbox.services.directions.v5.models">DirectionsRoute</a></dt>
<dd> </dd>
<dt><a href="com/mapbox/services/directions/v4/DirectionsService.html" title="interface in com.mapbox.services.directions.v4"><span class="typeNameLink">DirectionsService</span></a> - Interface in <a href="com/mapbox/services/directions/v4/package-summary.html">com.mapbox.services.directions.v4</a></dt>
<dd>
<div class="block">Interface that defines the directions service (v4).</div>
</dd>
<dt><a href="com/mapbox/services/directions/v5/DirectionsService.html" title="interface in com.mapbox.services.directions.v5"><span class="typeNameLink">DirectionsService</span></a> - Interface in <a href="com/mapbox/services/directions/v5/package-summary.html">com.mapbox.services.directions.v5</a></dt>
<dd>
<div class="block">Interface that defines the directions service (v5).</div>
</dd>
<dt><a href="com/mapbox/services/directions/v5/models/DirectionsWaypoint.html" title="class in com.mapbox.services.directions.v5.models"><span class="typeNameLink">DirectionsWaypoint</span></a> - Class in <a href="com/mapbox/services/directions/v5/models/package-summary.html">com.mapbox.services.directions.v5.models</a></dt>
<dd>
<div class="block">An input coordinate snapped to the roads network.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v5/models/DirectionsWaypoint.html#DirectionsWaypoint--">DirectionsWaypoint()</a></span> - Constructor for class com.mapbox.services.directions.v5.models.<a href="com/mapbox/services/directions/v5/models/DirectionsWaypoint.html" title="class in com.mapbox.services.directions.v5.models">DirectionsWaypoint</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/turf/TurfMeasurement.html#distance-com.mapbox.services.commons.models.Position-com.mapbox.services.commons.models.Position-java.lang.String-">distance(Position, Position, String)</a></span> - Static method in class com.mapbox.services.commons.turf.<a href="com/mapbox/services/commons/turf/TurfMeasurement.html" title="class in com.mapbox.services.commons.turf">TurfMeasurement</a></dt>
<dd>
<div class="block">Calculates the distance between two positions in degress, radians, miles, or kilometers.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/turf/TurfMeasurement.html#distance-com.mapbox.services.commons.geojson.Point-com.mapbox.services.commons.geojson.Point-">distance(Point, Point)</a></span> - Static method in class com.mapbox.services.commons.turf.<a href="com/mapbox/services/commons/turf/TurfMeasurement.html" title="class in com.mapbox.services.commons.turf">TurfMeasurement</a></dt>
<dd>
<div class="block">Calculates the distance between two points in kilometers.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/turf/TurfMeasurement.html#distance-com.mapbox.services.commons.geojson.Point-com.mapbox.services.commons.geojson.Point-java.lang.String-">distance(Point, Point, String)</a></span> - Static method in class com.mapbox.services.commons.turf.<a href="com/mapbox/services/commons/turf/TurfMeasurement.html" title="class in com.mapbox.services.commons.turf">TurfMeasurement</a></dt>
<dd>
<div class="block">Calculates the distance between two points in degress, radians, miles, or kilometers.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/turf/TurfHelpers.html#distanceToRadians-double-">distanceToRadians(double)</a></span> - Static method in class com.mapbox.services.commons.turf.<a href="com/mapbox/services/commons/turf/TurfHelpers.html" title="class in com.mapbox.services.commons.turf">TurfHelpers</a></dt>
<dd>
<div class="block">Convert distance to radians.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/turf/TurfHelpers.html#distanceToRadians-double-java.lang.String-">distanceToRadians(double, String)</a></span> - Static method in class com.mapbox.services.commons.turf.<a href="com/mapbox/services/commons/turf/TurfHelpers.html" title="class in com.mapbox.services.commons.turf">TurfHelpers</a></dt>
<dd>
<div class="block">Convert distance to radians.</div>
</dd>
</dl>
<a name="I:E">
<!-- -->
</a>
<h2 class="title">E</h2>
<dl>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/utils/PolylineUtils.html#encode-java.util.List-int-">encode(List<Position>, int)</a></span> - Static method in class com.mapbox.services.commons.utils.<a href="com/mapbox/services/commons/utils/PolylineUtils.html" title="class in com.mapbox.services.commons.utils">PolylineUtils</a></dt>
<dd>
<div class="block">Encodes a sequence of Positions into an encoded path string.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/MapboxService.html#enqueueCall-retrofit2.Callback-">enqueueCall(Callback<T>)</a></span> - Method in class com.mapbox.services.commons.<a href="com/mapbox/services/commons/MapboxService.html" title="class in com.mapbox.services.commons">MapboxService</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v4/MapboxDirections.html#enqueueCall-retrofit2.Callback-">enqueueCall(Callback<DirectionsResponse>)</a></span> - Method in class com.mapbox.services.directions.v4.<a href="com/mapbox/services/directions/v4/MapboxDirections.html" title="class in com.mapbox.services.directions.v4">MapboxDirections</a></dt>
<dd>
<div class="block">Execute the call</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v5/MapboxDirections.html#enqueueCall-retrofit2.Callback-">enqueueCall(Callback<DirectionsResponse>)</a></span> - Method in class com.mapbox.services.directions.v5.<a href="com/mapbox/services/directions/v5/MapboxDirections.html" title="class in com.mapbox.services.directions.v5">MapboxDirections</a></dt>
<dd>
<div class="block">Execute the call</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/geocoding/v5/MapboxGeocoding.html#enqueueCall-retrofit2.Callback-">enqueueCall(Callback<GeocodingResponse>)</a></span> - Method in class com.mapbox.services.geocoding.v5.<a href="com/mapbox/services/geocoding/v5/MapboxGeocoding.html" title="class in com.mapbox.services.geocoding.v5">MapboxGeocoding</a></dt>
<dd>
<div class="block">Execute the call</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/mapmatching/v4/MapboxMapMatching.html#enqueueCall-retrofit2.Callback-">enqueueCall(Callback<MapMatchingResponse>)</a></span> - Method in class com.mapbox.services.mapmatching.v4.<a href="com/mapbox/services/mapmatching/v4/MapboxMapMatching.html" title="class in com.mapbox.services.mapmatching.v4">MapboxMapMatching</a></dt>
<dd>
<div class="block">Execute the call</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/models/Position.html#equals-java.lang.Object-">equals(Object)</a></span> - Method in class com.mapbox.services.commons.models.<a href="com/mapbox/services/commons/models/Position.html" title="class in com.mapbox.services.commons.models">Position</a></dt>
<dd>
<div class="block">Indicates whether some other object is "equal to" this one.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/tidy/Tidy.html#execute-com.mapbox.services.commons.geojson.FeatureCollection-">execute(FeatureCollection)</a></span> - Method in class com.mapbox.services.commons.tidy.<a href="com/mapbox/services/commons/tidy/Tidy.html" title="class in com.mapbox.services.commons.tidy">Tidy</a></dt>
<dd>
<div class="block">Method that performs the tidying of geojson route passed in.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/MapboxService.html#executeCall--">executeCall()</a></span> - Method in class com.mapbox.services.commons.<a href="com/mapbox/services/commons/MapboxService.html" title="class in com.mapbox.services.commons">MapboxService</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v4/MapboxDirections.html#executeCall--">executeCall()</a></span> - Method in class com.mapbox.services.directions.v4.<a href="com/mapbox/services/directions/v4/MapboxDirections.html" title="class in com.mapbox.services.directions.v4">MapboxDirections</a></dt>
<dd>
<div class="block">Execute the call</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v5/MapboxDirections.html#executeCall--">executeCall()</a></span> - Method in class com.mapbox.services.directions.v5.<a href="com/mapbox/services/directions/v5/MapboxDirections.html" title="class in com.mapbox.services.directions.v5">MapboxDirections</a></dt>
<dd>
<div class="block">Execute the call</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/geocoding/v5/MapboxGeocoding.html#executeCall--">executeCall()</a></span> - Method in class com.mapbox.services.geocoding.v5.<a href="com/mapbox/services/geocoding/v5/MapboxGeocoding.html" title="class in com.mapbox.services.geocoding.v5">MapboxGeocoding</a></dt>
<dd>
<div class="block">Execute the call</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/mapmatching/v4/MapboxMapMatching.html#executeCall--">executeCall()</a></span> - Method in class com.mapbox.services.mapmatching.v4.<a href="com/mapbox/services/mapmatching/v4/MapboxMapMatching.html" title="class in com.mapbox.services.mapmatching.v4">MapboxMapMatching</a></dt>
<dd>
<div class="block">Execute the call</div>
</dd>
</dl>
<a name="I:F">
<!-- -->
</a>
<h2 class="title">F</h2>
<dl>
<dt><a href="com/mapbox/services/commons/geojson/Feature.html" title="class in com.mapbox.services.commons.geojson"><span class="typeNameLink">Feature</span></a> - Class in <a href="com/mapbox/services/commons/geojson/package-summary.html">com.mapbox.services.commons.geojson</a></dt>
<dd>
<div class="block">A GeoJSON object with the type "Feature" is a feature object.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/Feature.html#Feature-com.mapbox.services.commons.geojson.Geometry-com.google.gson.JsonObject-java.lang.String-">Feature(Geometry, JsonObject, String)</a></span> - Constructor for class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/Feature.html" title="class in com.mapbox.services.commons.geojson">Feature</a></dt>
<dd>
<div class="block">Private constructor.</div>
</dd>
<dt><a href="com/mapbox/services/commons/geojson/FeatureCollection.html" title="class in com.mapbox.services.commons.geojson"><span class="typeNameLink">FeatureCollection</span></a> - Class in <a href="com/mapbox/services/commons/geojson/package-summary.html">com.mapbox.services.commons.geojson</a></dt>
<dd>
<div class="block">A GeoJSON object with the type "FeatureCollection" is a feature object which represents a
collection of feature objects.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/FeatureCollection.html#FeatureCollection-java.util.List-">FeatureCollection(List<Feature>)</a></span> - Constructor for class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/FeatureCollection.html" title="class in com.mapbox.services.commons.geojson">FeatureCollection</a></dt>
<dd>
<div class="block">Protected constructor.</div>
</dd>
<dt><a href="com/mapbox/services/directions/v4/models/FeatureGeometry.html" title="class in com.mapbox.services.directions.v4.models"><span class="typeNameLink">FeatureGeometry</span></a> - Class in <a href="com/mapbox/services/directions/v4/models/package-summary.html">com.mapbox.services.directions.v4.models</a></dt>
<dd>
<div class="block">Describes the geometry of a <a href="com/mapbox/services/directions/v4/models/DirectionsFeature.html" title="class in com.mapbox.services.directions.v4.models"><code>DirectionsFeature</code></a>.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v4/models/FeatureGeometry.html#FeatureGeometry--">FeatureGeometry()</a></span> - Constructor for class com.mapbox.services.directions.v4.models.<a href="com/mapbox/services/directions/v4/models/FeatureGeometry.html" title="class in com.mapbox.services.directions.v4.models">FeatureGeometry</a></dt>
<dd>
<div class="block">Builder</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/turf/TurfInvariant.html#featureOf-com.mapbox.services.commons.geojson.Feature-java.lang.String-java.lang.String-">featureOf(Feature, String, String)</a></span> - Static method in class com.mapbox.services.commons.turf.<a href="com/mapbox/services/commons/turf/TurfInvariant.html" title="class in com.mapbox.services.commons.turf">TurfInvariant</a></dt>
<dd>
<div class="block">Enforce expectations about types of <a href="com/mapbox/services/commons/geojson/Feature.html" title="class in com.mapbox.services.commons.geojson"><code>Feature</code></a> inputs for Turf.</div>
</dd>
<dt><a href="com/mapbox/services/directions/v4/models/FeatureProperties.html" title="class in com.mapbox.services.directions.v4.models"><span class="typeNameLink">FeatureProperties</span></a> - Class in <a href="com/mapbox/services/directions/v4/models/package-summary.html">com.mapbox.services.directions.v4.models</a></dt>
<dd>
<div class="block">Properties describing a <a href="com/mapbox/services/directions/v4/models/DirectionsFeature.html" title="class in com.mapbox.services.directions.v4.models"><code>DirectionsFeature</code></a>.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v4/models/FeatureProperties.html#FeatureProperties--">FeatureProperties()</a></span> - Constructor for class com.mapbox.services.directions.v4.models.<a href="com/mapbox/services/directions/v4/models/FeatureProperties.html" title="class in com.mapbox.services.directions.v4.models">FeatureProperties</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/LineString.html#fromCoordinates-java.util.List-">fromCoordinates(List<Position>)</a></span> - Static method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/LineString.html" title="class in com.mapbox.services.commons.geojson">LineString</a></dt>
<dd>
<div class="block">creates a <a href="com/mapbox/services/commons/geojson/LineString.html" title="class in com.mapbox.services.commons.geojson"><code>LineString</code></a> from a list of coordinates.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/LineString.html#fromCoordinates-double:A:A-">fromCoordinates(double[][])</a></span> - Static method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/LineString.html" title="class in com.mapbox.services.commons.geojson">LineString</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/MultiLineString.html#fromCoordinates-java.util.List-">fromCoordinates(List<List<Position>>)</a></span> - Static method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/MultiLineString.html" title="class in com.mapbox.services.commons.geojson">MultiLineString</a></dt>
<dd>
<div class="block">Creates a <a href="com/mapbox/services/commons/geojson/MultiLineString.html" title="class in com.mapbox.services.commons.geojson"><code>MultiLineString</code></a> from a list of coordinates.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/MultiLineString.html#fromCoordinates-double:A:A:A-">fromCoordinates(double[][][])</a></span> - Static method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/MultiLineString.html" title="class in com.mapbox.services.commons.geojson">MultiLineString</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/MultiPoint.html#fromCoordinates-java.util.List-">fromCoordinates(List<Position>)</a></span> - Static method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/MultiPoint.html" title="class in com.mapbox.services.commons.geojson">MultiPoint</a></dt>
<dd>
<div class="block">Creates a <a href="com/mapbox/services/commons/geojson/MultiPoint.html" title="class in com.mapbox.services.commons.geojson"><code>MultiPoint</code></a> from a list of coordinates.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/MultiPoint.html#fromCoordinates-double:A:A-">fromCoordinates(double[][])</a></span> - Static method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/MultiPoint.html" title="class in com.mapbox.services.commons.geojson">MultiPoint</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/MultiPolygon.html#fromCoordinates-java.util.List-">fromCoordinates(List<List<List<Position>>>)</a></span> - Static method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/MultiPolygon.html" title="class in com.mapbox.services.commons.geojson">MultiPolygon</a></dt>
<dd>
<div class="block">Creates a <a href="com/mapbox/services/commons/geojson/MultiPolygon.html" title="class in com.mapbox.services.commons.geojson"><code>MultiPolygon</code></a> from a list of coordinates.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/MultiPolygon.html#fromCoordinates-double:A:A:A:A-">fromCoordinates(double[][][][])</a></span> - Static method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/MultiPolygon.html" title="class in com.mapbox.services.commons.geojson">MultiPolygon</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/Point.html#fromCoordinates-com.mapbox.services.commons.models.Position-">fromCoordinates(Position)</a></span> - Static method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/Point.html" title="class in com.mapbox.services.commons.geojson">Point</a></dt>
<dd>
<div class="block">Creates a <a href="com/mapbox/services/commons/geojson/Point.html" title="class in com.mapbox.services.commons.geojson"><code>Point</code></a> from a given coordinate.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/Point.html#fromCoordinates-double:A-">fromCoordinates(double[])</a></span> - Static method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/Point.html" title="class in com.mapbox.services.commons.geojson">Point</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/Polygon.html#fromCoordinates-java.util.List-">fromCoordinates(List<List<Position>>)</a></span> - Static method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/Polygon.html" title="class in com.mapbox.services.commons.geojson">Polygon</a></dt>
<dd>
<div class="block">Creates a <a href="com/mapbox/services/commons/geojson/Polygon.html" title="class in com.mapbox.services.commons.geojson"><code>Polygon</code></a> from a list of coordinates.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/Polygon.html#fromCoordinates-double:A:A:A-">fromCoordinates(double[][][])</a></span> - Static method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/Polygon.html" title="class in com.mapbox.services.commons.geojson">Polygon</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/models/Position.html#fromCoordinates-double-double-double-">fromCoordinates(double, double, double)</a></span> - Static method in class com.mapbox.services.commons.models.<a href="com/mapbox/services/commons/models/Position.html" title="class in com.mapbox.services.commons.models">Position</a></dt>
<dd>
<div class="block">Builds a <a href="com/mapbox/services/commons/models/Position.html" title="class in com.mapbox.services.commons.models"><code>Position</code></a> from a double longitude, latitude and an altitude.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/models/Position.html#fromCoordinates-double-double-">fromCoordinates(double, double)</a></span> - Static method in class com.mapbox.services.commons.models.<a href="com/mapbox/services/commons/models/Position.html" title="class in com.mapbox.services.commons.models">Position</a></dt>
<dd>
<div class="block">Builds a <a href="com/mapbox/services/commons/models/Position.html" title="class in com.mapbox.services.commons.models"><code>Position</code></a> from a double longitude and latitude.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/models/Position.html#fromCoordinates-double:A-">fromCoordinates(double[])</a></span> - Static method in class com.mapbox.services.commons.models.<a href="com/mapbox/services/commons/models/Position.html" title="class in com.mapbox.services.commons.models">Position</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/FeatureCollection.html#fromFeatures-java.util.List-">fromFeatures(List<Feature>)</a></span> - Static method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/FeatureCollection.html" title="class in com.mapbox.services.commons.geojson">FeatureCollection</a></dt>
<dd>
<div class="block">Create a <a href="com/mapbox/services/commons/geojson/FeatureCollection.html" title="class in com.mapbox.services.commons.geojson"><code>FeatureCollection</code></a> from a List of features.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/FeatureCollection.html#fromFeatures-com.mapbox.services.commons.geojson.Feature:A-">fromFeatures(Feature[])</a></span> - Static method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/FeatureCollection.html" title="class in com.mapbox.services.commons.geojson">FeatureCollection</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/geocoding/v5/models/CarmenFeatureCollection.html#fromFeatures-java.util.List-">fromFeatures(List<CarmenFeature>)</a></span> - Static method in class com.mapbox.services.geocoding.v5.models.<a href="com/mapbox/services/geocoding/v5/models/CarmenFeatureCollection.html" title="class in com.mapbox.services.geocoding.v5.models">CarmenFeatureCollection</a></dt>
<dd>
<div class="block">Create a <a href="com/mapbox/services/commons/geojson/FeatureCollection.html" title="class in com.mapbox.services.commons.geojson"><code>FeatureCollection</code></a> from a List of features.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/GeometryCollection.html#fromGeometries-java.util.List-">fromGeometries(List<Geometry>)</a></span> - Static method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/GeometryCollection.html" title="class in com.mapbox.services.commons.geojson">GeometryCollection</a></dt>
<dd>
<div class="block">Create a <a href="com/mapbox/services/commons/geojson/GeometryCollection.html" title="class in com.mapbox.services.commons.geojson"><code>GeometryCollection</code></a> from a List of geometries.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/Feature.html#fromGeometry-com.mapbox.services.commons.geojson.Geometry-">fromGeometry(Geometry)</a></span> - Static method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/Feature.html" title="class in com.mapbox.services.commons.geojson">Feature</a></dt>
<dd>
<div class="block">Create a feature from geometry.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/Feature.html#fromGeometry-com.mapbox.services.commons.geojson.Geometry-com.google.gson.JsonObject-">fromGeometry(Geometry, JsonObject)</a></span> - Static method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/Feature.html" title="class in com.mapbox.services.commons.geojson">Feature</a></dt>
<dd>
<div class="block">Create a feature from geometry.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/Feature.html#fromGeometry-com.mapbox.services.commons.geojson.Geometry-com.google.gson.JsonObject-java.lang.String-">fromGeometry(Geometry, JsonObject, String)</a></span> - Static method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/Feature.html" title="class in com.mapbox.services.commons.geojson">Feature</a></dt>
<dd>
<div class="block">Create a feature from geometry.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/BaseFeatureCollection.html#fromJson-java.lang.String-">fromJson(String)</a></span> - Static method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/BaseFeatureCollection.html" title="class in com.mapbox.services.commons.geojson">BaseFeatureCollection</a></dt>
<dd>
<div class="block">Create a GeoJSON feature collection object from JSON.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/Feature.html#fromJson-java.lang.String-">fromJson(String)</a></span> - Static method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/Feature.html" title="class in com.mapbox.services.commons.geojson">Feature</a></dt>
<dd>
<div class="block">Create a GeoJSON feature object from JSON.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/GeometryCollection.html#fromJson-java.lang.String-">fromJson(String)</a></span> - Static method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/GeometryCollection.html" title="class in com.mapbox.services.commons.geojson">GeometryCollection</a></dt>
<dd>
<div class="block">Create a GeoJSON geometry collection object from JSON.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/LineString.html#fromJson-java.lang.String-">fromJson(String)</a></span> - Static method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/LineString.html" title="class in com.mapbox.services.commons.geojson">LineString</a></dt>
<dd>
<div class="block">Create a GeoJSON LineString object from JSON.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/MultiLineString.html#fromJson-java.lang.String-">fromJson(String)</a></span> - Static method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/MultiLineString.html" title="class in com.mapbox.services.commons.geojson">MultiLineString</a></dt>
<dd>
<div class="block">Create a GeoJSON MultiLineString object from JSON.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/MultiPoint.html#fromJson-java.lang.String-">fromJson(String)</a></span> - Static method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/MultiPoint.html" title="class in com.mapbox.services.commons.geojson">MultiPoint</a></dt>
<dd>
<div class="block">Create a GeoJSON MultiPoint object from JSON.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/MultiPolygon.html#fromJson-java.lang.String-">fromJson(String)</a></span> - Static method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/MultiPolygon.html" title="class in com.mapbox.services.commons.geojson">MultiPolygon</a></dt>
<dd>
<div class="block">Create a GeoJSON MultiPolygon object from JSON.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/Point.html#fromJson-java.lang.String-">fromJson(String)</a></span> - Static method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/Point.html" title="class in com.mapbox.services.commons.geojson">Point</a></dt>
<dd>
<div class="block">Create a GeoJSON Point object from JSON.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/Polygon.html#fromJson-java.lang.String-">fromJson(String)</a></span> - Static method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/Polygon.html" title="class in com.mapbox.services.commons.geojson">Polygon</a></dt>
<dd>
<div class="block">Create a GeoJSON Polygon object from JSON.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/LineString.html#fromPolyline-java.lang.String-int-">fromPolyline(String, int)</a></span> - Static method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/LineString.html" title="class in com.mapbox.services.commons.geojson">LineString</a></dt>
<dd>
<div class="block">Convert a polyline into a LineString.</div>
</dd>
</dl>
<a name="I:G">
<!-- -->
</a>
<h2 class="title">G</h2>
<dl>
<dt><a href="com/mapbox/services/geocoding/v5/GeocodingCriteria.html" title="class in com.mapbox.services.geocoding.v5"><span class="typeNameLink">GeocodingCriteria</span></a> - Class in <a href="com/mapbox/services/geocoding/v5/package-summary.html">com.mapbox.services.geocoding.v5</a></dt>
<dd>
<div class="block">Constants that should be used when requesting geocoding.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/geocoding/v5/GeocodingCriteria.html#GeocodingCriteria--">GeocodingCriteria()</a></span> - Constructor for class com.mapbox.services.geocoding.v5.<a href="com/mapbox/services/geocoding/v5/GeocodingCriteria.html" title="class in com.mapbox.services.geocoding.v5">GeocodingCriteria</a></dt>
<dd> </dd>
<dt><a href="com/mapbox/services/geocoding/v5/models/GeocodingResponse.html" title="class in com.mapbox.services.geocoding.v5.models"><span class="typeNameLink">GeocodingResponse</span></a> - Class in <a href="com/mapbox/services/geocoding/v5/models/package-summary.html">com.mapbox.services.geocoding.v5.models</a></dt>
<dd>
<div class="block">The response object for a geocoder query.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/geocoding/v5/models/GeocodingResponse.html#GeocodingResponse-java.util.List-">GeocodingResponse(List<CarmenFeature>)</a></span> - Constructor for class com.mapbox.services.geocoding.v5.models.<a href="com/mapbox/services/geocoding/v5/models/GeocodingResponse.html" title="class in com.mapbox.services.geocoding.v5.models">GeocodingResponse</a></dt>
<dd> </dd>
<dt><a href="com/mapbox/services/geocoding/v5/GeocodingService.html" title="interface in com.mapbox.services.geocoding.v5"><span class="typeNameLink">GeocodingService</span></a> - Interface in <a href="com/mapbox/services/geocoding/v5/package-summary.html">com.mapbox.services.geocoding.v5</a></dt>
<dd>
<div class="block">Interface that defines the geocoding service.</div>
</dd>
<dt><a href="com/mapbox/services/commons/geojson/GeoJSON.html" title="interface in com.mapbox.services.commons.geojson"><span class="typeNameLink">GeoJSON</span></a> - Interface in <a href="com/mapbox/services/commons/geojson/package-summary.html">com.mapbox.services.commons.geojson</a></dt>
<dd>
<div class="block">Interface implemented by all GeoJSON objects, contains common fields.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/turf/TurfInvariant.html#geojsonType-com.mapbox.services.commons.geojson.GeoJSON-java.lang.String-java.lang.String-">geojsonType(GeoJSON, String, String)</a></span> - Static method in class com.mapbox.services.commons.turf.<a href="com/mapbox/services/commons/turf/TurfInvariant.html" title="class in com.mapbox.services.commons.turf">TurfInvariant</a></dt>
<dd>
<div class="block">Enforce expectations about types of GeoJSON objects for Turf.</div>
</dd>
<dt><a href="com/mapbox/services/commons/geojson/Geometry.html" title="interface in com.mapbox.services.commons.geojson"><span class="typeNameLink">Geometry</span></a><<a href="com/mapbox/services/commons/geojson/Geometry.html" title="type parameter in Geometry">T</a>> - Interface in <a href="com/mapbox/services/commons/geojson/package-summary.html">com.mapbox.services.commons.geojson</a></dt>
<dd>
<div class="block">Interface implemented by all Geometry objects, contains common fields.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v4/DirectionsCriteria.html#GEOMETRY_FALSE">GEOMETRY_FALSE</a></span> - Static variable in class com.mapbox.services.directions.v4.<a href="com/mapbox/services/directions/v4/DirectionsCriteria.html" title="class in com.mapbox.services.directions.v4">DirectionsCriteria</a></dt>
<dd>
<div class="block">Use false to omit geometry from response.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v4/DirectionsCriteria.html#GEOMETRY_GEOJSON">GEOMETRY_GEOJSON</a></span> - Static variable in class com.mapbox.services.directions.v4.<a href="com/mapbox/services/directions/v4/DirectionsCriteria.html" title="class in com.mapbox.services.directions.v4">DirectionsCriteria</a></dt>
<dd>
<div class="block">Format to return route geometry will be geojson.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v4/DirectionsCriteria.html#GEOMETRY_POLYLINE">GEOMETRY_POLYLINE</a></span> - Static variable in class com.mapbox.services.directions.v4.<a href="com/mapbox/services/directions/v4/DirectionsCriteria.html" title="class in com.mapbox.services.directions.v4">DirectionsCriteria</a></dt>
<dd>
<div class="block">Format to return route geometry will be encoded polyline.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v5/DirectionsCriteria.html#GEOMETRY_POLYLINE">GEOMETRY_POLYLINE</a></span> - Static variable in class com.mapbox.services.directions.v5.<a href="com/mapbox/services/directions/v5/DirectionsCriteria.html" title="class in com.mapbox.services.directions.v5">DirectionsCriteria</a></dt>
<dd>
<div class="block">Format to return route geometry will be encoded polyline.</div>
</dd>
<dt><a href="com/mapbox/services/commons/geojson/GeometryCollection.html" title="class in com.mapbox.services.commons.geojson"><span class="typeNameLink">GeometryCollection</span></a> - Class in <a href="com/mapbox/services/commons/geojson/package-summary.html">com.mapbox.services.commons.geojson</a></dt>
<dd>
<div class="block">A GeoJSON object with the type "GeometryCollection" is a geometry object which represents a
collection of geometry objects.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/GeometryCollection.html#GeometryCollection-java.util.List-">GeometryCollection(List<Geometry>)</a></span> - Constructor for class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/GeometryCollection.html" title="class in com.mapbox.services.commons.geojson">GeometryCollection</a></dt>
<dd>
<div class="block">Private constructor.</div>
</dd>
<dt><a href="com/mapbox/services/commons/geojson/custom/GeometryDeserializer.html" title="class in com.mapbox.services.commons.geojson.custom"><span class="typeNameLink">GeometryDeserializer</span></a> - Class in <a href="com/mapbox/services/commons/geojson/custom/package-summary.html">com.mapbox.services.commons.geojson.custom</a></dt>
<dd>
<div class="block">Required to handle the "Unable to invoke no-args constructor for interface <a href="com/mapbox/services/commons/geojson/Geometry.html" title="interface in com.mapbox.services.commons.geojson"><code>Geometry</code></a> error
that Gson shows when trying to deserialize a list of <a href="com/mapbox/services/commons/geojson/Geometry.html" title="interface in com.mapbox.services.commons.geojson"><code>Geometry</code></a>.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/custom/GeometryDeserializer.html#GeometryDeserializer--">GeometryDeserializer()</a></span> - Constructor for class com.mapbox.services.commons.geojson.custom.<a href="com/mapbox/services/commons/geojson/custom/GeometryDeserializer.html" title="class in com.mapbox.services.commons.geojson.custom">GeometryDeserializer</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/MapboxBuilder.html#getAccessToken--">getAccessToken()</a></span> - Method in class com.mapbox.services.commons.<a href="com/mapbox/services/commons/MapboxBuilder.html" title="class in com.mapbox.services.commons">MapboxBuilder</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v4/MapboxDirections.Builder.html#getAccessToken--">getAccessToken()</a></span> - Method in class com.mapbox.services.directions.v4.<a href="com/mapbox/services/directions/v4/MapboxDirections.Builder.html" title="class in com.mapbox.services.directions.v4">MapboxDirections.Builder</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v5/MapboxDirections.Builder.html#getAccessToken--">getAccessToken()</a></span> - Method in class com.mapbox.services.directions.v5.<a href="com/mapbox/services/directions/v5/MapboxDirections.Builder.html" title="class in com.mapbox.services.directions.v5">MapboxDirections.Builder</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/geocoding/v5/MapboxGeocoding.Builder.html#getAccessToken--">getAccessToken()</a></span> - Method in class com.mapbox.services.geocoding.v5.<a href="com/mapbox/services/geocoding/v5/MapboxGeocoding.Builder.html" title="class in com.mapbox.services.geocoding.v5">MapboxGeocoding.Builder</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/mapmatching/v4/MapboxMapMatching.Builder.html#getAccessToken--">getAccessToken()</a></span> - Method in class com.mapbox.services.mapmatching.v4.<a href="com/mapbox/services/mapmatching/v4/MapboxMapMatching.Builder.html" title="class in com.mapbox.services.mapmatching.v4">MapboxMapMatching.Builder</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/staticimage/v1/MapboxStaticImage.Builder.html#getAccessToken--">getAccessToken()</a></span> - Method in class com.mapbox.services.staticimage.v1.<a href="com/mapbox/services/staticimage/v1/MapboxStaticImage.Builder.html" title="class in com.mapbox.services.staticimage.v1">MapboxStaticImage.Builder</a></dt>
<dd>
<div class="block">Get the access token</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/geocoding/v5/models/CarmenFeature.html#getAddress--">getAddress()</a></span> - Method in class com.mapbox.services.geocoding.v5.models.<a href="com/mapbox/services/geocoding/v5/models/CarmenFeature.html" title="class in com.mapbox.services.geocoding.v5.models">CarmenFeature</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/models/Position.html#getAltitude--">getAltitude()</a></span> - Method in class com.mapbox.services.commons.models.<a href="com/mapbox/services/commons/models/Position.html" title="class in com.mapbox.services.commons.models">Position</a></dt>
<dd>
<div class="block">Gets the position's altitude.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/geocoding/v5/models/CarmenFeatureCollection.html#getAttribution--">getAttribution()</a></span> - Method in class com.mapbox.services.geocoding.v5.models.<a href="com/mapbox/services/geocoding/v5/models/CarmenFeatureCollection.html" title="class in com.mapbox.services.geocoding.v5.models">CarmenFeatureCollection</a></dt>
<dd>
<div class="block">Mapbox attribution.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/geocoding/v5/MapboxGeocoding.Builder.html#getAutocomplete--">getAutocomplete()</a></span> - Method in class com.mapbox.services.geocoding.v5.<a href="com/mapbox/services/geocoding/v5/MapboxGeocoding.Builder.html" title="class in com.mapbox.services.geocoding.v5">MapboxGeocoding.Builder</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/geocoding/v5/MapboxGeocoding.Builder.html#getBbox--">getBbox()</a></span> - Method in class com.mapbox.services.geocoding.v5.<a href="com/mapbox/services/geocoding/v5/MapboxGeocoding.Builder.html" title="class in com.mapbox.services.geocoding.v5">MapboxGeocoding.Builder</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/geocoding/v5/models/CarmenFeature.html#getBbox--">getBbox()</a></span> - Method in class com.mapbox.services.geocoding.v5.models.<a href="com/mapbox/services/geocoding/v5/models/CarmenFeature.html" title="class in com.mapbox.services.geocoding.v5.models">CarmenFeature</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v5/models/StepManeuver.html#getBearingAfter--">getBearingAfter()</a></span> - Method in class com.mapbox.services.directions.v5.models.<a href="com/mapbox/services/directions/v5/models/StepManeuver.html" title="class in com.mapbox.services.directions.v5.models">StepManeuver</a></dt>
<dd>
<div class="block">Number between 0 and 360 indicating the clockwise angle from true north to the direction of
travel right after the maneuver.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v5/models/StepManeuver.html#getBearingBefore--">getBearingBefore()</a></span> - Method in class com.mapbox.services.directions.v5.models.<a href="com/mapbox/services/directions/v5/models/StepManeuver.html" title="class in com.mapbox.services.directions.v5.models">StepManeuver</a></dt>
<dd>
<div class="block">Number between 0 and 360 indicating the clockwise angle from true north to the direction of
travel right before the maneuver.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v5/models/StepIntersection.html#getBearings--">getBearings()</a></span> - Method in class com.mapbox.services.directions.v5.models.<a href="com/mapbox/services/directions/v5/models/StepIntersection.html" title="class in com.mapbox.services.directions.v5.models">StepIntersection</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/Feature.html#getBooleanProperty-java.lang.String-">getBooleanProperty(String)</a></span> - Method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/Feature.html" title="class in com.mapbox.services.commons.geojson">Feature</a></dt>
<dd>
<div class="block">Convenience method to get a Boolean member.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v4/DirectionsService.html#getCall-java.lang.String-java.lang.String-java.lang.String-java.lang.String-java.lang.Boolean-java.lang.String-java.lang.String-java.lang.Boolean-">getCall(String, String, String, String, Boolean, String, String, Boolean)</a></span> - Method in interface com.mapbox.services.directions.v4.<a href="com/mapbox/services/directions/v4/DirectionsService.html" title="interface in com.mapbox.services.directions.v4">DirectionsService</a></dt>
<dd>
<div class="block">Call-based interface</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v4/MapboxDirections.html#getCall--">getCall()</a></span> - Method in class com.mapbox.services.directions.v4.<a href="com/mapbox/services/directions/v4/MapboxDirections.html" title="class in com.mapbox.services.directions.v4">MapboxDirections</a></dt>
<dd>
<div class="block">Used internally.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v5/DirectionsService.html#getCall-java.lang.String-java.lang.String-java.lang.String-java.lang.String-java.lang.String-java.lang.Boolean-java.lang.String-java.lang.String-java.lang.String-java.lang.Boolean-java.lang.Boolean-">getCall(String, String, String, String, String, Boolean, String, String, String, Boolean, Boolean)</a></span> - Method in interface com.mapbox.services.directions.v5.<a href="com/mapbox/services/directions/v5/DirectionsService.html" title="interface in com.mapbox.services.directions.v5">DirectionsService</a></dt>
<dd>
<div class="block">Call-based interface</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/geocoding/v5/GeocodingService.html#getCall-java.lang.String-java.lang.String-java.lang.String-java.lang.String-java.lang.String-java.lang.String-java.lang.String-java.lang.Boolean-java.lang.String-">getCall(String, String, String, String, String, String, String, Boolean, String)</a></span> - Method in interface com.mapbox.services.geocoding.v5.<a href="com/mapbox/services/geocoding/v5/GeocodingService.html" title="interface in com.mapbox.services.geocoding.v5">GeocodingService</a></dt>
<dd>
<div class="block">Call-based interface</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/geocoding/v5/MapboxGeocoding.html#getCall--">getCall()</a></span> - Method in class com.mapbox.services.geocoding.v5.<a href="com/mapbox/services/geocoding/v5/MapboxGeocoding.html" title="class in com.mapbox.services.geocoding.v5">MapboxGeocoding</a></dt>
<dd>
<div class="block">Used internally.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/mapmatching/v4/MapboxMapMatching.html#getCall--">getCall()</a></span> - Method in class com.mapbox.services.mapmatching.v4.<a href="com/mapbox/services/mapmatching/v4/MapboxMapMatching.html" title="class in com.mapbox.services.mapmatching.v4">MapboxMapMatching</a></dt>
<dd>
<div class="block">Used internally.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/mapmatching/v4/MapMatchingService.html#getCall-java.lang.String-java.lang.String-java.lang.String-java.lang.String-java.lang.Integer-okhttp3.RequestBody-">getCall(String, String, String, String, Integer, RequestBody)</a></span> - Method in interface com.mapbox.services.mapmatching.v4.<a href="com/mapbox/services/mapmatching/v4/MapMatchingService.html" title="interface in com.mapbox.services.mapmatching.v4">MapMatchingService</a></dt>
<dd>
<div class="block">Call based interface</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/geocoding/v5/models/CarmenContext.html#getCategory--">getCategory()</a></span> - Method in class com.mapbox.services.geocoding.v5.models.<a href="com/mapbox/services/geocoding/v5/models/CarmenContext.html" title="class in com.mapbox.services.geocoding.v5.models">CarmenContext</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/geocoding/v5/models/CarmenFeature.html#getCenter--">getCenter()</a></span> - Method in class com.mapbox.services.geocoding.v5.models.<a href="com/mapbox/services/geocoding/v5/models/CarmenFeature.html" title="class in com.mapbox.services.geocoding.v5.models">CarmenFeature</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/Feature.html#getCharacterProperty-java.lang.String-">getCharacterProperty(String)</a></span> - Method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/Feature.html" title="class in com.mapbox.services.commons.geojson">Feature</a></dt>
<dd>
<div class="block">Convenience method to get a Character member.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/navigation/v5/RouteUtils.html#getClosestStep-com.mapbox.services.commons.models.Position-com.mapbox.services.directions.v5.models.RouteLeg-">getClosestStep(Position, RouteLeg)</a></span> - Method in class com.mapbox.services.navigation.v5.<a href="com/mapbox/services/navigation/v5/RouteUtils.html" title="class in com.mapbox.services.navigation.v5">RouteUtils</a></dt>
<dd>
<div class="block">Get the closest route step to the given position.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v5/models/DirectionsResponse.html#getCode--">getCode()</a></span> - Method in class com.mapbox.services.directions.v5.models.<a href="com/mapbox/services/directions/v5/models/DirectionsResponse.html" title="class in com.mapbox.services.directions.v5.models">DirectionsResponse</a></dt>
<dd>
<div class="block">String indicating the state of the response.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/mapmatching/v4/models/MapMatchingResponse.html#getCode--">getCode()</a></span> - Method in class com.mapbox.services.mapmatching.v4.models.<a href="com/mapbox/services/mapmatching/v4/models/MapMatchingResponse.html" title="class in com.mapbox.services.mapmatching.v4.models">MapMatchingResponse</a></dt>
<dd>
<div class="block">A string depicting the state of the response.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/geocoding/v5/models/CarmenFeature.html#getContext--">getContext()</a></span> - Method in class com.mapbox.services.geocoding.v5.models.<a href="com/mapbox/services/geocoding/v5/models/CarmenFeature.html" title="class in com.mapbox.services.geocoding.v5.models">CarmenFeature</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/turf/TurfInvariant.html#getCoord-com.mapbox.services.commons.geojson.Feature-">getCoord(Feature)</a></span> - Static method in class com.mapbox.services.commons.turf.<a href="com/mapbox/services/commons/turf/TurfInvariant.html" title="class in com.mapbox.services.commons.turf">TurfInvariant</a></dt>
<dd>
<div class="block">Unwrap a coordinate from a Feature with a Point geometry, a Point geometry, or a single
coordinate.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/turf/TurfInvariant.html#getCoord-com.mapbox.services.commons.geojson.Point-">getCoord(Point)</a></span> - Static method in class com.mapbox.services.commons.turf.<a href="com/mapbox/services/commons/turf/TurfInvariant.html" title="class in com.mapbox.services.commons.turf">TurfInvariant</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/Geometry.html#getCoordinates--">getCoordinates()</a></span> - Method in interface com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/Geometry.html" title="interface in com.mapbox.services.commons.geojson">Geometry</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/LineString.html#getCoordinates--">getCoordinates()</a></span> - Method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/LineString.html" title="class in com.mapbox.services.commons.geojson">LineString</a></dt>
<dd>
<div class="block">Get the list of <a href="com/mapbox/services/commons/models/Position.html" title="class in com.mapbox.services.commons.models"><code>Position</code></a> making up the LineString.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/MultiLineString.html#getCoordinates--">getCoordinates()</a></span> - Method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/MultiLineString.html" title="class in com.mapbox.services.commons.geojson">MultiLineString</a></dt>
<dd>
<div class="block">Get the list of <a href="com/mapbox/services/commons/models/Position.html" title="class in com.mapbox.services.commons.models"><code>Position</code></a> making up the MultiLineString.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/MultiPoint.html#getCoordinates--">getCoordinates()</a></span> - Method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/MultiPoint.html" title="class in com.mapbox.services.commons.geojson">MultiPoint</a></dt>
<dd>
<div class="block">Get the list of <a href="com/mapbox/services/commons/models/Position.html" title="class in com.mapbox.services.commons.models"><code>Position</code></a> making up the MultiPoint.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/MultiPolygon.html#getCoordinates--">getCoordinates()</a></span> - Method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/MultiPolygon.html" title="class in com.mapbox.services.commons.geojson">MultiPolygon</a></dt>
<dd>
<div class="block">Get the list of <a href="com/mapbox/services/commons/models/Position.html" title="class in com.mapbox.services.commons.models"><code>Position</code></a> making up the MultiPolygon.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/Point.html#getCoordinates--">getCoordinates()</a></span> - Method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/Point.html" title="class in com.mapbox.services.commons.geojson">Point</a></dt>
<dd>
<div class="block">Get the <a href="com/mapbox/services/commons/models/Position.html" title="class in com.mapbox.services.commons.models"><code>Position</code></a> making up the Point.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/Polygon.html#getCoordinates--">getCoordinates()</a></span> - Method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/Polygon.html" title="class in com.mapbox.services.commons.geojson">Polygon</a></dt>
<dd>
<div class="block">Get the list of <a href="com/mapbox/services/commons/models/Position.html" title="class in com.mapbox.services.commons.models"><code>Position</code></a> making up the Polygon.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/models/Position.html#getCoordinates--">getCoordinates()</a></span> - Method in class com.mapbox.services.commons.models.<a href="com/mapbox/services/commons/models/Position.html" title="class in com.mapbox.services.commons.models">Position</a></dt>
<dd>
<div class="block">Gets the position coordinates in a double array.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v4/models/FeatureGeometry.html#getCoordinates--">getCoordinates()</a></span> - Method in class com.mapbox.services.directions.v4.models.<a href="com/mapbox/services/directions/v4/models/FeatureGeometry.html" title="class in com.mapbox.services.directions.v4.models">FeatureGeometry</a></dt>
<dd>
<div class="block">Gives the coordinate of the point.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v4/models/ManeuverPoint.html#getCoordinates--">getCoordinates()</a></span> - Method in class com.mapbox.services.directions.v4.models.<a href="com/mapbox/services/directions/v4/models/ManeuverPoint.html" title="class in com.mapbox.services.directions.v4.models">ManeuverPoint</a></dt>
<dd>
<div class="block">Gives the coordinate of the Point.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v5/MapboxDirections.Builder.html#getCoordinates--">getCoordinates()</a></span> - Method in class com.mapbox.services.directions.v5.<a href="com/mapbox/services/directions/v5/MapboxDirections.Builder.html" title="class in com.mapbox.services.directions.v5">MapboxDirections.Builder</a></dt>
<dd>
<div class="block">The coordinates parameter denotes between which points routing happens.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/geocoding/v5/MapboxGeocoding.Builder.html#getCountry--">getCountry()</a></span> - Method in class com.mapbox.services.geocoding.v5.<a href="com/mapbox/services/geocoding/v5/MapboxGeocoding.Builder.html" title="class in com.mapbox.services.geocoding.v5">MapboxGeocoding.Builder</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/tidy/Tidy.html#getDateFormat--">getDateFormat()</a></span> - Method in class com.mapbox.services.commons.tidy.<a href="com/mapbox/services/commons/tidy/Tidy.html" title="class in com.mapbox.services.commons.tidy">Tidy</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v4/MapboxDirections.Builder.html#getDestination--">getDestination()</a></span> - Method in class com.mapbox.services.directions.v4.<a href="com/mapbox/services/directions/v4/MapboxDirections.Builder.html" title="class in com.mapbox.services.directions.v4">MapboxDirections.Builder</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v4/models/DirectionsResponse.html#getDestination--">getDestination()</a></span> - Method in class com.mapbox.services.directions.v4.models.<a href="com/mapbox/services/directions/v4/models/DirectionsResponse.html" title="class in com.mapbox.services.directions.v4.models">DirectionsResponse</a></dt>
<dd>
<div class="block">Gives details about the destination of the route.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v4/models/RouteStep.html#getDirection--">getDirection()</a></span> - Method in class com.mapbox.services.directions.v4.models.<a href="com/mapbox/services/directions/v4/models/RouteStep.html" title="class in com.mapbox.services.directions.v4.models">RouteStep</a></dt>
<dd>
<div class="block">The approximate cardinal direction of travel following the maneuver.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v4/models/DirectionsRoute.html#getDistance--">getDistance()</a></span> - Method in class com.mapbox.services.directions.v4.models.<a href="com/mapbox/services/directions/v4/models/DirectionsRoute.html" title="class in com.mapbox.services.directions.v4.models">DirectionsRoute</a></dt>
<dd>
<div class="block">The distance traveled from origin to destination.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v4/models/RouteStep.html#getDistance--">getDistance()</a></span> - Method in class com.mapbox.services.directions.v4.models.<a href="com/mapbox/services/directions/v4/models/RouteStep.html" title="class in com.mapbox.services.directions.v4.models">RouteStep</a></dt>
<dd>
<div class="block">The distance of travel from the maneuver to the subsequent step.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v5/models/DirectionsRoute.html#getDistance--">getDistance()</a></span> - Method in class com.mapbox.services.directions.v5.models.<a href="com/mapbox/services/directions/v5/models/DirectionsRoute.html" title="class in com.mapbox.services.directions.v5.models">DirectionsRoute</a></dt>
<dd>
<div class="block">The distance traveled from origin to destination.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v5/models/LegStep.html#getDistance--">getDistance()</a></span> - Method in class com.mapbox.services.directions.v5.models.<a href="com/mapbox/services/directions/v5/models/LegStep.html" title="class in com.mapbox.services.directions.v5.models">LegStep</a></dt>
<dd>
<div class="block">The distance traveled from the maneuver to the next <a href="com/mapbox/services/directions/v5/models/LegStep.html" title="class in com.mapbox.services.directions.v5.models"><code>LegStep</code></a>.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v5/models/RouteLeg.html#getDistance--">getDistance()</a></span> - Method in class com.mapbox.services.directions.v5.models.<a href="com/mapbox/services/directions/v5/models/RouteLeg.html" title="class in com.mapbox.services.directions.v5.models">RouteLeg</a></dt>
<dd>
<div class="block">The distance traveled from one waypoint to another.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/navigation/v5/RouteUtils.html#getDistanceToStep-com.mapbox.services.commons.models.Position-com.mapbox.services.directions.v5.models.RouteLeg-int-">getDistanceToStep(Position, RouteLeg, int)</a></span> - Method in class com.mapbox.services.navigation.v5.<a href="com/mapbox/services/navigation/v5/RouteUtils.html" title="class in com.mapbox.services.navigation.v5">RouteUtils</a></dt>
<dd>
<div class="block">Computes the distance between the position and the closest point in route step.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v4/models/DirectionsRoute.html#getDuration--">getDuration()</a></span> - Method in class com.mapbox.services.directions.v4.models.<a href="com/mapbox/services/directions/v4/models/DirectionsRoute.html" title="class in com.mapbox.services.directions.v4.models">DirectionsRoute</a></dt>
<dd>
<div class="block">The estimated travel time from origin to destination.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v4/models/RouteStep.html#getDuration--">getDuration()</a></span> - Method in class com.mapbox.services.directions.v4.models.<a href="com/mapbox/services/directions/v4/models/RouteStep.html" title="class in com.mapbox.services.directions.v4.models">RouteStep</a></dt>
<dd>
<div class="block">The estimated travel time from the maneuver to the subsequent step.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v5/models/DirectionsRoute.html#getDuration--">getDuration()</a></span> - Method in class com.mapbox.services.directions.v5.models.<a href="com/mapbox/services/directions/v5/models/DirectionsRoute.html" title="class in com.mapbox.services.directions.v5.models">DirectionsRoute</a></dt>
<dd>
<div class="block">The estimated travel time from origin to destination.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v5/models/LegStep.html#getDuration--">getDuration()</a></span> - Method in class com.mapbox.services.directions.v5.models.<a href="com/mapbox/services/directions/v5/models/LegStep.html" title="class in com.mapbox.services.directions.v5.models">LegStep</a></dt>
<dd>
<div class="block">The estimated travel time from the maneuver to the next <a href="com/mapbox/services/directions/v5/models/LegStep.html" title="class in com.mapbox.services.directions.v5.models"><code>LegStep</code></a>.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v5/models/RouteLeg.html#getDuration--">getDuration()</a></span> - Method in class com.mapbox.services.directions.v5.models.<a href="com/mapbox/services/directions/v5/models/RouteLeg.html" title="class in com.mapbox.services.directions.v5.models">RouteLeg</a></dt>
<dd>
<div class="block">The estimated travel time from one waypoint to another.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v5/models/StepIntersection.html#getEntry--">getEntry()</a></span> - Method in class com.mapbox.services.directions.v5.models.<a href="com/mapbox/services/directions/v5/models/StepIntersection.html" title="class in com.mapbox.services.directions.v5.models">StepIntersection</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/FeatureCollection.html#getFeatures--">getFeatures()</a></span> - Method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/FeatureCollection.html" title="class in com.mapbox.services.commons.geojson">FeatureCollection</a></dt>
<dd>
<div class="block">Get the List containing all the features within collection.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/geocoding/v5/models/CarmenFeatureCollection.html#getFeatures--">getFeatures()</a></span> - Method in class com.mapbox.services.geocoding.v5.models.<a href="com/mapbox/services/geocoding/v5/models/CarmenFeatureCollection.html" title="class in com.mapbox.services.geocoding.v5.models">CarmenFeatureCollection</a></dt>
<dd>
<div class="block">Get the List containing all the features within collection.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/geocoding/v5/MapboxGeocoding.Builder.html#getGeocodingTypes--">getGeocodingTypes()</a></span> - Method in class com.mapbox.services.geocoding.v5.<a href="com/mapbox/services/geocoding/v5/MapboxGeocoding.Builder.html" title="class in com.mapbox.services.geocoding.v5">MapboxGeocoding.Builder</a></dt>
<dd>
<div class="block">If you filtered your results by one or more types you can get what those filters are by
using this method.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/GeometryCollection.html#getGeometries--">getGeometries()</a></span> - Method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/GeometryCollection.html" title="class in com.mapbox.services.commons.geojson">GeometryCollection</a></dt>
<dd>
<div class="block">Get the List containing all the geometries within collection.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v5/MapboxDirections.Builder.html#getGeometries--">getGeometries()</a></span> - Method in class com.mapbox.services.directions.v5.<a href="com/mapbox/services/directions/v5/MapboxDirections.Builder.html" title="class in com.mapbox.services.directions.v5">MapboxDirections.Builder</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/Feature.html#getGeometry--">getGeometry()</a></span> - Method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/Feature.html" title="class in com.mapbox.services.commons.geojson">Feature</a></dt>
<dd>
<div class="block">Get the features <a href="com/mapbox/services/commons/geojson/Geometry.html" title="interface in com.mapbox.services.commons.geojson"><code>Geometry</code></a>.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v4/MapboxDirections.Builder.html#getGeometry--">getGeometry()</a></span> - Method in class com.mapbox.services.directions.v4.<a href="com/mapbox/services/directions/v4/MapboxDirections.Builder.html" title="class in com.mapbox.services.directions.v4">MapboxDirections.Builder</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v4/models/DirectionsFeature.html#getGeometry--">getGeometry()</a></span> - Method in class com.mapbox.services.directions.v4.models.<a href="com/mapbox/services/directions/v4/models/DirectionsFeature.html" title="class in com.mapbox.services.directions.v4.models">DirectionsFeature</a></dt>
<dd>
<div class="block"><a href="com/mapbox/services/directions/v4/models/FeatureGeometry.html" title="class in com.mapbox.services.directions.v4.models"><code>FeatureGeometry</code></a> object contains type and the coordinates.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v4/models/DirectionsRoute.html#getGeometry--">getGeometry()</a></span> - Method in class com.mapbox.services.directions.v4.models.<a href="com/mapbox/services/directions/v4/models/DirectionsRoute.html" title="class in com.mapbox.services.directions.v4.models">DirectionsRoute</a></dt>
<dd>
<div class="block">Gives the geometry of the route.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v5/models/DirectionsRoute.html#getGeometry--">getGeometry()</a></span> - Method in class com.mapbox.services.directions.v5.models.<a href="com/mapbox/services/directions/v5/models/DirectionsRoute.html" title="class in com.mapbox.services.directions.v5.models">DirectionsRoute</a></dt>
<dd>
<div class="block">Gives the geometry of the route.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v5/models/LegStep.html#getGeometry--">getGeometry()</a></span> - Method in class com.mapbox.services.directions.v5.models.<a href="com/mapbox/services/directions/v5/models/LegStep.html" title="class in com.mapbox.services.directions.v5.models">LegStep</a></dt>
<dd>
<div class="block">Gives the geometry of the leg step.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/mapmatching/v4/MapboxMapMatching.Builder.html#getGeometry--">getGeometry()</a></span> - Method in class com.mapbox.services.mapmatching.v4.<a href="com/mapbox/services/mapmatching/v4/MapboxMapMatching.Builder.html" title="class in com.mapbox.services.mapmatching.v4">MapboxMapMatching.Builder</a></dt>
<dd>
<div class="block">Format of the returned geometry.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/mapmatching/v4/MapboxMapMatching.Builder.html#getGpsPrecison--">getGpsPrecison()</a></span> - Method in class com.mapbox.services.mapmatching.v4.<a href="com/mapbox/services/mapmatching/v4/MapboxMapMatching.Builder.html" title="class in com.mapbox.services.mapmatching.v4">MapboxMapMatching.Builder</a></dt>
<dd>
<div class="block">An integer in meters indicating the assumed precision of the used tracking device.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/MapboxService.html#getHeaderUserAgent--">getHeaderUserAgent()</a></span> - Static method in class com.mapbox.services.commons.<a href="com/mapbox/services/commons/MapboxService.html" title="class in com.mapbox.services.commons">MapboxService</a></dt>
<dd>
<div class="block">Computes a full user agent header of the form: MapboxJava/1.2.0 Mac OS X/10.11.5 (x86_64)</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/directions/v4/models/RouteStep.html#getHeading--">getHeading()</a></span> - Method in class com.mapbox.services.directions.v4.models.<a href="com/mapbox/services/directions/v4/models/RouteStep.html" title="class in com.mapbox.services.directions.v4.models">RouteStep</a></dt>
<dd>
<div class="block">The clockwise angle from true north to the direction of travel immediately following the maneuver.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/mapbox/services/commons/geojson/Feature.html#getId--">getId()</a></span> - Method in class com.mapbox.services.commons.geojson.<a href="com/mapbox/services/commons/geojson/Feature.html" title="class in com.mapbox.services.commons.geojson">Feature</a></dt>
<dd>
<div class="block">The optional, common identifier of this feature.</div>