-
Notifications
You must be signed in to change notification settings - Fork 5.1k
/
search.json
2805 lines (2805 loc) · 181 KB
/
search.json
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
{
"swagger": "2.0",
"info": {
"title": "Azure Maps Search Service",
"version": "1.0",
"description": "Azure Maps Search REST APIs"
},
"host": "atlas.microsoft.com",
"schemes": [
"https"
],
"consumes": [],
"produces": [
"application/json"
],
"securityDefinitions": {
"AADToken": {
"type": "oauth2",
"authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize",
"flow": "implicit",
"description": "These are the [Microsoft Entra OAuth 2.0](/azure/active-directory/develop/v1-overview) Flows. When paired with [Azure role-based access](/azure/role-based-access-control/overview) control it can be used to control access to Azure Maps REST APIs. Azure role-based access controls are used to designate access to one or more Azure Maps resource account or sub-resources. Any user, group, or service principal can be granted access via a built-in role or a custom role composed of one or more permissions to Azure Maps REST APIs.\n\nTo implement scenarios, we recommend viewing [authentication concepts](https://aka.ms/amauth). In summary, this security definition provides a solution for modeling application(s) via objects capable of access control on specific APIs and scopes.\n\n> [!NOTE]\n> * This security definition **requires** the use of the `x-ms-client-id` header to indicate which Azure Maps resource the application is requesting access to. This can be acquired from the [Maps management](https://aka.ms/amauthdetails) API.\n> * The `Authorization URL` is specific to the Azure public cloud instance. Sovereign clouds have unique Authorization URLs and Microsoft Entra ID configurations. \n> * The Azure role-based access control is configured from the [Azure management plane](https://aka.ms/amrbac) via Azure portal, PowerShell, CLI, Azure SDKs, or REST APIs.\n> * Usage of the [Azure Maps Web SDK](https://aka.ms/amaadmc) allows for configuration based setup of an application for multiple use cases.\n>* For more information on Microsoft identity platform, see [Microsoft identity platform overview](/entra/identity-platform/v2-overview).\n\n",
"scopes": {
"https://atlas.microsoft.com/.default": "https://atlas.microsoft.com/.default"
}
},
"SharedKey": {
"type": "apiKey",
"description": "This is a shared key that is provisioned when you [Create an Azure Maps account](/azure/azure-maps/quick-demo-map-app#create-an-azure-maps-account) in the Azure portal or using PowerShell, CLI, Azure SDKs, or REST API.\n\n With this key, any application can access all REST API. In other words, this key can be used as a master key in the account that they are issued in.\n\n For publicly exposed applications, our recommendation is to use the [confidential client applications](/azure/azure-maps/authentication-best-practices#confidential-client-applications) approach to access Azure Maps REST APIs so your key can be securely stored.",
"name": "subscription-key",
"in": "query"
},
"SasToken": {
"type": "apiKey",
"description": "This is a shared access signature token is created from the List SAS operation on the [Azure Maps resource](https://aka.ms/amauth) through the Azure management plane via Azure portal, PowerShell, CLI, Azure SDKs, or REST APIs.\n\n With this token, any application is authorized to access with Azure role-based access controls and fine-grain control to the expiration, rate, and region(s) of use for the particular token. In other words, the SAS Token can be used to allow applications to control access in a more secured way than the shared key.\n\n For publicly exposed applications, our recommendation is to configure a specific list of allowed origins on the [Map account resource](https://aka.ms/amauth) to limit rendering abuse and regularly renew the SAS Token.",
"name": "SAS Token",
"in": "header"
}
},
"security": [
{
"AADToken": [
"https://atlas.microsoft.com/.default"
]
},
{
"SharedKey": []
},
{
"SasToken": []
}
],
"responses": {},
"parameters": {
"ApiVersion": {
"name": "api-version",
"description": "Version number of Azure Maps API.",
"type": "string",
"in": "query",
"required": true,
"default": "1.0",
"x-ms-parameter-location": "client"
},
"BatchId": {
"name": "format",
"x-ms-client-name": "batchId",
"description": "Batch id for querying the operation.",
"type": "string",
"in": "path",
"required": true,
"x-ms-parameter-location": "method"
},
"LimitSearch": {
"name": "limit",
"in": "query",
"x-ms-client-name": "top",
"description": "Maximum number of responses that will be returned. Default: 10, minimum: 1 and maximum: 100",
"type": "integer",
"minimum": 1,
"maximum": 100,
"x-ms-parameter-location": "method"
},
"Offset": {
"name": "ofs",
"in": "query",
"x-ms-client-name": "skip",
"description": "Starting offset of the returned results within the full result set. Default: 0",
"type": "integer",
"minimum": 0,
"maximum": 1900,
"x-ms-parameter-location": "method"
},
"OptionalBiasLat": {
"name": "lat",
"in": "query",
"description": "Latitude where results should be biased. E.g. 37.337",
"type": "number",
"format": "double",
"x-ms-parameter-location": "method"
},
"OptionalBiasLon": {
"name": "lon",
"in": "query",
"description": "Longitude where results should be biased. E.g. -121.89",
"type": "number",
"format": "double",
"x-ms-parameter-location": "method"
},
"BoundingBoxTopLeft": {
"x-client-name": "BoundingBoxTopLeft",
"name": "topLeft",
"in": "query",
"description": "Top left position of the bounding box. E.g. 37.553,-122.453",
"type": "string",
"x-ms-parameter-location": "method"
},
"BoundingBoxBottomRight": {
"x-client-name": "BoundingBoxBottomRight",
"name": "btmRight",
"in": "query",
"description": "Bottom right position of the bounding box. E.g. 37.553,-122.453",
"type": "string",
"x-ms-parameter-location": "method"
},
"RequiredBiasLat": {
"name": "lat",
"in": "query",
"description": "Latitude where results should be biased. E.g. 37.337.",
"required": true,
"type": "number",
"format": "double",
"x-ms-parameter-location": "method"
},
"RequiredBiasLon": {
"name": "lon",
"in": "query",
"description": "Longitude where results should be biased. E.g. -121.89.",
"required": true,
"type": "number",
"format": "double",
"x-ms-parameter-location": "method"
},
"Query": {
"name": "query",
"in": "query",
"description": "The applicable query string. Must be properly URL encoded.",
"required": true,
"type": "string",
"x-ms-parameter-location": "method"
},
"Position": {
"name": "query",
"in": "query",
"description": "The applicable query specified as a comma separated string composed by latitude followed by longitude e.g. \"47.641268,-122.125679\".",
"required": true,
"x-ms-parameter-location": "method",
"type": "array",
"collectionFormat": "csv",
"minItems": 2,
"maxItems": 2,
"items": {
"type": "number",
"format": "double"
}
},
"SearchIndexSet": {
"name": "idxSet",
"x-ms-client-name": "indexFilter",
"in": "query",
"description": "A comma separated list of indexes which should be utilized for the search. Item order does not matter. Available indexes are: Addr = Address range interpolation, Geo = Geographies, PAD = Point Addresses, POI = Points of interest, Str = Streets, Xstr = Cross Streets (intersections)",
"type": "array",
"items": {
"type": "string",
"enum": [
"Addr",
"Geo",
"PAD",
"POI",
"Str",
"Xstr"
],
"x-ms-enum": {
"name": "SearchIndexes",
"modelAsString": true,
"values": [
{
"value": "Addr",
"description": "Address range interpolation",
"name": "Address"
},
{
"value": "Geo",
"description": "Geographies",
"name": "Geographies"
},
{
"value": "PAD",
"description": "Point Addresses",
"name": "PointAddresses"
},
{
"value": "POI",
"description": "Points of interest",
"name": "PointsOfInterest"
},
{
"value": "Str",
"description": "Streets",
"name": "Streets"
},
{
"value": "Xstr",
"description": "Cross Streets (Intersections)",
"name": "CrossStreets"
}
]
}
},
"collectionFormat": "csv",
"x-ms-parameter-location": "method"
},
"EntityType": {
"name": "entityType",
"in": "query",
"description": "Specifies the level of filtering performed on geographies. Narrows the search for specified geography entity types, e.g. return only municipality. The resulting response will contain the geography ID as well as the entity type matched. If you provide more than one entity as a comma separated list, endpoint will return the 'smallest entity available'. Returned Geometry ID can be used to get the geometry of that geography via [Get Search Polygon](/rest/api/maps/search/get-search-polygon?view=rest-maps-1.0) API. The following parameters are ignored when entityType is set:\n\n* heading\n* number\n* returnRoadUse\n* returnSpeedLimit\n* roadUse\n* returnMatchType",
"type": "string",
"enum": [
"Country",
"CountrySubdivision",
"CountrySecondarySubdivision",
"CountryTertiarySubdivision",
"Municipality",
"MunicipalitySubdivision",
"Neighbourhood",
"PostalCodeArea"
],
"x-ms-enum": {
"name": "GeographicEntityType",
"modelAsString": true
},
"x-ms-parameter-location": "method"
},
"ExtendedPostalCodesFor": {
"name": "extendedPostalCodesFor",
"in": "query",
"description": "Indexes for which extended postal codes should be included in the results.\n\nAvailable indexes are: \n\n **Addr** = Address ranges \n\n **Geo** = Geographies \n\n **PAD** = Point Addresses \n\n **POI** = Points of Interest \n\n **Str** = Streets \n\n **XStr** = Cross Streets (intersections)\n\nValue should be a comma separated list of index types (in any order) or **None** for no indexes.\n\nBy default extended postal codes are included for all indexes except Geo. Extended postal code lists for geographies can be quite long so they have to be explicitly requested when needed.\n\nUsage examples:\n\n extendedPostalCodesFor=POI \n\n extendedPostalCodesFor=PAD,Addr,POI \n\n extendedPostalCodesFor=None\n\nExtended postal code is returned as an **extendedPostalCode** property of an address. Availability is region-dependent.",
"type": "array",
"items": {
"type": "string",
"enum": [
"Addr",
"Geo",
"PAD",
"POI",
"Str",
"Xstr"
],
"x-ms-enum": {
"name": "SearchIndexes",
"modelAsString": true
}
},
"collectionFormat": "csv",
"x-ms-parameter-location": "method"
},
"ExtendedPostalCodesForPoi": {
"name": "extendedPostalCodesFor",
"in": "query",
"description": "Indexes for which extended postal codes should be included in the results.\n\nAvailable indexes are: \n\n **POI** = Points of Interest \n\nValue should be **POI** or **None** to disable extended postal codes.\n\nBy default extended postal codes are included.\n\nUsage examples:\n\n extendedPostalCodesFor=POI \n\n extendedPostalCodesFor=None\n\nExtended postal code is returned as an **extendedPostalCode** property of an address. Availability is region-dependent.",
"type": "array",
"minItems": 0,
"maxItems": 1,
"required": false,
"items": {
"type": "string",
"enum": [
"POI",
"None"
],
"x-ms-enum": {
"name": "PointOfInterestExtendedPostalCodes",
"modelAsString": true
}
},
"x-ms-parameter-location": "method"
},
"Typeahead": {
"name": "typeahead",
"x-ms-client-name": "isTypeAhead",
"in": "query",
"description": "Boolean. If the typeahead flag is set, the query will be interpreted as a partial input and the search will enter predictive mode",
"type": "boolean",
"x-ms-parameter-location": "method"
},
"CategorySet": {
"name": "categorySet",
"in": "query",
"x-ms-client-name": "categoryFilter",
"description": "A comma-separated list of category set IDs which could be used to restrict the result to specific Points of Interest categories. ID order does not matter. Maximum number of `categorySet` values supported per request is 10. When multiple category identifiers are provided, only POIs that belong to (at least) one of the categories from the provided list will be returned. The list of supported categories can be discovered using [POI Categories](https://aka.ms/AzureMapsPOICategoryTree) API. Usage examples:\n\n* **categorySet=7315** (Search Points of Interest from category Restaurant)\n\n* **categorySet=7315025,7315017** (Search Points of Interest of category either Italian or French Restaurant) ",
"type": "array",
"items": {
"type": "integer"
},
"collectionFormat": "csv",
"x-ms-parameter-location": "method"
},
"CountrySet": {
"name": "countrySet",
"x-ms-client-name": "countryFilter",
"in": "query",
"description": "Comma separated string of country/region codes, e.g. FR,ES. This will limit the search to the specified countries/regions",
"type": "array",
"items": {
"type": "string"
},
"collectionFormat": "csv",
"x-ms-parameter-location": "method"
},
"Radius": {
"name": "radius",
"x-ms-client-name": "radiusInMeters",
"in": "query",
"description": "The radius in meters to for the results to be constrained to the defined area",
"type": "integer",
"x-ms-parameter-location": "method"
},
"PoiQuery": {
"name": "query",
"in": "query",
"description": "The POI name to search for (e.g., \"statue of liberty\", \"starbucks\", \"pizza\"). Must be properly URL encoded.",
"required": true,
"type": "string",
"x-ms-parameter-location": "method"
},
"BrandSet": {
"name": "brandSet",
"in": "query",
"x-ms-client-name": "brandFilter",
"description": "A comma-separated list of brand names which could be used to restrict the result to specific brands. Item order does not matter. When multiple brands are provided, only results that belong to (at least) one of the provided list will be returned. Brands that contain a \",\" in their name should be put into quotes.\n\nUsage examples:\n\n brandSet=Foo\n\n brandSet=Foo,Bar\n\n brandSet=\"A,B,C Comma\",Bar",
"type": "array",
"items": {
"type": "string"
},
"collectionFormat": "csv",
"x-ms-parameter-location": "method"
},
"ConnectorSet": {
"name": "connectorSet",
"in": "query",
"x-ms-client-name": "electricVehicleConnectorFilter",
"description": "A comma-separated list of connector types which could be used to restrict the result to Electric Vehicle Station supporting specific connector types. Item order does not matter. When multiple connector types are provided, only results that belong to (at least) one of the provided list will be returned.\n\nAvailable connector types are:\n * `StandardHouseholdCountrySpecific` - These are the standard household connectors for a certain region. They are all AC single phase and the standard Voltage and standard Amperage. See also: [Plug & socket types - World Standards](https://www.worldstandards.eu/electricity/plugs-and-sockets).\n * `IEC62196Type1` - Type 1 connector as defined in the IEC 62196-2 standard. Also called Yazaki after the original manufacturer or SAE J1772 after the standard that first published it. Mostly used in combination with 120V single phase or up to 240V single phase infrastructure.\n * `IEC62196Type1CCS` - Type 1 based combo connector as defined in the IEC 62196-3 standard. The connector is based on the Type 1 connector – as defined in the IEC 62196-2 standard – with two additional direct current (DC) contacts to allow DC fast charging.\n * `IEC62196Type2CableAttached` - Type 2 connector as defined in the IEC 62196-2 standard. Provided as a cable and plug attached to the charging point.\n * `IEC62196Type2Outlet` - Type 2 connector as defined in the IEC 62196-2 standard. Provided as a socket set into the charging point.\n * `IEC62196Type2CCS` - Type 2 based combo connector as defined in the IEC 62196-3 standard. The connector is based on the Type 2 connector – as defined in the IEC 62196-2 standard – with two additional direct current (DC) contacts to allow DC fast charging.\n * `IEC62196Type3` - Type 3 connector as defined in the IEC 62196-2 standard. Also called Scame after the original manufacturer. Mostly used in combination with up to 240V single phase or up to 420V three phase infrastructure.\n * `Chademo` - CHAdeMO connector named after an association formed by the Tokyo Electric Power Company and industrial partners. Because of this is is also known as the TEPCO's connector. It supports fast DC charging.\n * `IEC60309AC1PhaseBlue` - Industrial Blue connector is a connector defined in the IEC 60309 standard. It is sometime referred to as by some combination of the standard, the color and the fact that is a single phase connector. The connector usually has the \"P+N+E, 6h\" configuration.\n * `IEC60309DCWhite` - Industrial White connector is a DC connector defined in the IEC 60309 standard.\n * `Tesla` - The Tesla connector is the regionally specific Tesla Supercharger connector. I.e. it refers to either Tesla's proprietary connector, sometimes referred to as Tesla Port mostly limited to North America or the modified Type 2 (DC over Type 2) in Europe.\n\nUsage examples:\n\n connectorSet=IEC62196Type2CableAttached\n connectorSet=IEC62196Type2Outlet,IEC62196Type2CableAttached",
"type": "array",
"items": {
"type": "string",
"enum": [
"StandardHouseholdCountrySpecific",
"IEC62196Type1",
"IEC62196Type1CCS",
"IEC62196Type2CableAttached",
"IEC62196Type2Outlet",
"IEC62196Type2CCS",
"IEC62196Type3",
"Chademo",
"IEC60309AC1PhaseBlue",
"IEC60309DCWhite",
"Tesla"
],
"x-ms-enum": {
"name": "ElectricVehicleConnector",
"modelAsString": true,
"values": [
{
"value": "StandardHouseholdCountrySpecific",
"description": "These are the standard household connectors for a certain region. They are all AC single phase and the standard Voltage and standard Amperage.\n\nSee also: [Plug & socket types - World Standards](https://www.worldstandards.eu/electricity/plugs-and-sockets)"
},
{
"value": "IEC62196Type1",
"description": "Type 1 connector as defined in the IEC 62196-2 standard. Also called Yazaki after the original manufacturer or SAE J1772 after the standard that first published it. Mostly used in combination with 120V single phase or up to 240V single phase infrastructure."
},
{
"value": "IEC62196Type1CCS",
"description": "Type 1 based combo connector as defined in the IEC 62196-3 standard. The connector is based on the Type 1 connector – as defined in the IEC 62196-2 standard – with two additional direct current (DC) contacts to allow DC fast charging."
},
{
"value": "IEC62196Type2CableAttached",
"description": "Type 2 connector as defined in the IEC 62196-2 standard. Provided as a cable and plug attached to the charging point"
},
{
"value": "IEC62196Type2Outlet",
"description": "Type 2 connector as defined in the IEC 62196-2 standard. Provided as a socket set into the charging point."
},
{
"value": "IEC62196Type2CCS",
"description": "Type 2 based combo connector as defined in the IEC 62196-3 standard. The connector is based on the Type 2 connector – as defined in the IEC 62196-2 standard – with two additional direct current (DC) contacts to allow DC fast charging."
},
{
"value": "IEC62196Type3",
"description": "Type 3 connector as defined in the IEC 62196-2 standard. Also called Scame after the original manufacturer. Mostly used in combination with up to 240V single phase or up to 420V three phase infrastructure."
},
{
"value": "Chademo",
"description": "CHAdeMO connector named after an association formed by the Tokyo Electric Power Company and industrial partners. Because of this is is also known as the TEPCO's connector. It supports fast DC charging."
},
{
"value": "IEC60309AC1PhaseBlue",
"description": "Industrial Blue connector is a connector defined in the IEC 60309 standard. It is sometime referred to as by some combination of the standard, the color and the fact that is a single phase connector. The connector usually has the \"P+N+E, 6h\" configuration."
},
{
"value": "IEC60309DCWhite",
"description": "Industrial White connector is a DC connector defined in the IEC 60309 standard."
},
{
"value": "Tesla",
"description": "The Tesla connector is the regionally specific Tesla Supercharger connector. I.e. it refers to either Tesla's proprietary connector, sometimes referred to as Tesla Port mostly limited to North America or the modified Type 2 (DC over Type 2) in Europe."
}
]
}
},
"collectionFormat": "csv",
"x-ms-parameter-location": "method"
},
"OperatingHours": {
"name": "openingHours",
"x-ms-client-name": "operatingHours",
"description": "Hours of operation for a POI (Points of Interest). The availability of hours of operation will vary based on the data available. If not passed, then no opening hours information will be returned. \nSupported value: nextSevenDays",
"type": "string",
"in": "query",
"enum": [
"nextSevenDays"
],
"x-ms-enum": {
"name": "OperatingHoursRange",
"modelAsString": true,
"values": [
{
"value": "nextSevenDays",
"description": "Shows the hours of operation for the next week, starting with the current day in the local time of the POI."
}
]
},
"x-ms-parameter-location": "method"
}
},
"paths": {
"/search/polygon/{format}": {
"get": {
"summary": "Use to get polygon data of a geographical area shape such as a city or a country region.",
"description": "\n\nThe `Get Polygon` API is an HTTP `GET` request that returns geometry data such as a city or country/region outline for a set of entities, previously retrieved from an online search request in GeoJSON format. The geometry ID is returned in the `sourceGeometry` object under \"geometry\" and \"id\" in either a Search Address or Search Fuzzy call.\n\n A geometry ID retrieved from an online search endpoint has a limited lifetime, it is not recommended to store geometry IDs in persistent storage for later referral. It is expected that a request to the Polygon method is made within a few minutes of the request to the online search method that provided the ID. The service allows for batch requests up to 20 identifiers.",
"operationId": "Search_GetSearchPolygon",
"x-ms-client-name": "ListPolygons",
"x-ms-examples": {
"Get the Geometry using the geometry id returned by the previous Search": {
"$ref": "./examples/GetSearchPolygon.json"
}
},
"parameters": [
{
"$ref": "../../../Common/preview/1.0/common.json#/parameters/ClientId"
},
{
"$ref": "#/parameters/ApiVersion"
},
{
"$ref": "../../../Common/preview/1.0/common.json#/parameters/JsonFormat"
},
{
"name": "geometries",
"in": "query",
"x-ms-client-name": "geometryIds",
"description": "Comma separated list of geometry UUIDs, previously retrieved from an online search request.",
"required": true,
"type": "array",
"items": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/PolygonResult"
}
},
"default": {
"$ref": "../../../Common/preview/1.0/common.json#/responses/default"
}
}
}
},
"/search/fuzzy/{format}": {
"get": {
"summary": "Use when you need a search request that can handle combinations of addresses and POI tokens.",
"description": "\n\nThe `Get Search Fuzzy` (**Free Form Search**) API, an HTTP `GET` request that seamlessly handles a combination of [POI search](/rest/api/maps/search/get-search-poi?view=rest-maps-1.0) and [geocoding](/rest/api/maps/search/get-search-address?view=rest-maps-1.0). It is a Free Form Search API which handles fuzzy of inputs containing any combination of address or POI tokens as a canonical 'single line search'. It can also be weighted with a contextual position (lat/lon pair), or fully constrained by a coordinate and radius, or it can be executed more generally without any geo biasing anchor point.<br><br>We strongly advise you to use the 'countrySet' parameter to specify only the countries/regions for which your application needs coverage, as the default behavior will be to search the entire world, potentially returning unnecessary results.<br><br> E.g.: `countrySet`=US,FR <br><br>Please see [Search Coverage](/azure/location-based-services/geocoding-coverage) for a complete list of all the supported countries/regions.<br><br>Most Search queries default to `maxFuzzyLevel`=2 to gain performance and also reduce unusual results. This new default can be overridden as needed per request by passing in the query param `maxFuzzyLevel`=3 or 4.",
"operationId": "Search_GetSearchFuzzy",
"x-ms-client-name": "FuzzySearch",
"x-ms-examples": {
"Search City Seattle": {
"$ref": "./examples/GetSearchFuzzy.json"
}
},
"parameters": [
{
"$ref": "../../../Common/preview/1.0/common.json#/parameters/ClientId"
},
{
"$ref": "#/parameters/ApiVersion"
},
{
"$ref": "../../../Common/preview/1.0/common.json#/parameters/ResponseFormat"
},
{
"name": "query",
"in": "query",
"description": "The applicable query string (e.g., \"seattle\", \"pizza\"). Can _also_ be specified as a comma separated string composed by latitude followed by longitude (e.g., \"47.641268, -122.125679\"). Must be properly URL encoded.",
"required": true,
"type": "string"
},
{
"$ref": "#/parameters/Typeahead"
},
{
"$ref": "#/parameters/LimitSearch"
},
{
"$ref": "#/parameters/Offset"
},
{
"$ref": "#/parameters/CategorySet"
},
{
"$ref": "#/parameters/CountrySet"
},
{
"$ref": "#/parameters/OptionalBiasLat"
},
{
"$ref": "#/parameters/OptionalBiasLon"
},
{
"$ref": "#/parameters/Radius"
},
{
"$ref": "#/parameters/BoundingBoxTopLeft"
},
{
"$ref": "#/parameters/BoundingBoxBottomRight"
},
{
"$ref": "../../../Common/preview/1.0/common.json#/parameters/Language"
},
{
"$ref": "#/parameters/ExtendedPostalCodesFor"
},
{
"name": "minFuzzyLevel",
"in": "query",
"description": "Minimum fuzziness level to be used. Default: 1, minimum: 1 and maximum: 4\n\n* Level 1 has no spell checking.\n\n* Level 2 uses normal n-gram spell checking. For example, query \"restrant\" can be matched to \"restaurant.\"\n\n* Level 3 uses sound-like spell checking, and shingle spell checking. Sound-like spell checking is for \"rstrnt\" to \"restaurant\" matching. Shingle spell checking is for \"mountainview\" to \"mountain view\" matching.\n\n* Level 4 doesn’t add any more spell checking functions.\n\n\n\nThe search engine will start looking for a match on the level defined by minFuzzyLevel, and will stop searching at the level specified by maxFuzzyLevel.",
"type": "integer",
"minimum": 1,
"maximum": 4
},
{
"name": "maxFuzzyLevel",
"in": "query",
"description": "Maximum fuzziness level to be used. Default: 2, minimum: 1 and maximum: 4\n\n* Level 1 has no spell checking.\n\n* Level 2 uses normal n-gram spell checking. For example, query \"restrant\" can be matched to \"restaurant.\"\n\n* Level 3 uses sound-like spell checking, and shingle spell checking. Sound-like spell checking is for \"rstrnt\" to \"restaurant\" matching. Shingle spell checking is for \"mountainview\" to \"mountain view\" matching.\n\n* Level 4 doesn’t add any more spell checking functions.\n\n\n\nThe search engine will start looking for a match on the level defined by minFuzzyLevel, and will stop searching at the level specified by maxFuzzyLevel.",
"type": "integer",
"minimum": 1,
"maximum": 4
},
{
"$ref": "#/parameters/SearchIndexSet"
},
{
"$ref": "#/parameters/BrandSet"
},
{
"$ref": "#/parameters/ConnectorSet"
},
{
"$ref": "#/parameters/EntityType"
},
{
"$ref": "../../../Common/preview/1.0/common.json#/parameters/View"
},
{
"$ref": "#/parameters/OperatingHours"
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/SearchAddressResult"
}
},
"default": {
"$ref": "../../../Common/preview/1.0/common.json#/responses/default"
}
}
}
},
"/search/poi/{format}": {
"get": {
"summary": "Use to search for points of interest by name.",
"description": "\n\nThe `Points of Interest (POI) Search` API is an HTTP `GET` request that allows you to request POI results by name. It also supports additional query parameters such as language and filtering results by area of interest driven by country/region or bounding box. The Endpoint will return only POI results matching the query string. Response includes POI details such as address, coordinate location and category.",
"operationId": "Search_GetSearchPOI",
"x-ms-client-name": "SearchPointOfInterest",
"x-ms-examples": {
"Search for juice bars within 5 miles of Seattle Downtown and limit the response to 5 results": {
"$ref": "./examples/GetSearchPOI.json"
}
},
"parameters": [
{
"$ref": "../../../Common/preview/1.0/common.json#/parameters/ClientId"
},
{
"$ref": "#/parameters/ApiVersion"
},
{
"$ref": "../../../Common/preview/1.0/common.json#/parameters/ResponseFormat"
},
{
"name": "query",
"in": "query",
"description": "The POI name to search for (e.g., \"statue of liberty\", \"starbucks\"), must be properly URL encoded.",
"required": true,
"type": "string"
},
{
"$ref": "#/parameters/Typeahead"
},
{
"$ref": "#/parameters/LimitSearch"
},
{
"$ref": "#/parameters/Offset"
},
{
"$ref": "#/parameters/CategorySet"
},
{
"$ref": "#/parameters/CountrySet"
},
{
"$ref": "#/parameters/OptionalBiasLat"
},
{
"$ref": "#/parameters/OptionalBiasLon"
},
{
"$ref": "#/parameters/Radius"
},
{
"$ref": "#/parameters/BoundingBoxTopLeft"
},
{
"$ref": "#/parameters/BoundingBoxBottomRight"
},
{
"$ref": "../../../Common/preview/1.0/common.json#/parameters/Language"
},
{
"$ref": "#/parameters/ExtendedPostalCodesForPoi"
},
{
"$ref": "#/parameters/BrandSet"
},
{
"$ref": "#/parameters/ConnectorSet"
},
{
"$ref": "../../../Common/preview/1.0/common.json#/parameters/View"
},
{
"$ref": "#/parameters/OperatingHours"
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/SearchAddressResult"
}
},
"default": {
"$ref": "../../../Common/preview/1.0/common.json#/responses/default"
}
}
}
},
"/search/nearby/{format}": {
"get": {
"summary": "Use to search for points of interest near a specific location.",
"description": "The `Get Search Nearby` API is an HTTP `GET` request most useful for retrieving POI results around a specific location. This endpoint will only return POI results, and does not take in a search query parameter.",
"operationId": "Search_GetSearchNearby",
"x-ms-client-name": "SearchNearbyPointOfInterest",
"x-ms-examples": {
"Search for any points of interest (POI) within 5 miles of Manhattan NY and return the top 10 results": {
"$ref": "./examples/GetSearchNearby.json"
}
},
"parameters": [
{
"$ref": "../../../Common/preview/1.0/common.json#/parameters/ClientId"
},
{
"$ref": "#/parameters/ApiVersion"
},
{
"$ref": "../../../Common/preview/1.0/common.json#/parameters/ResponseFormat"
},
{
"$ref": "#/parameters/RequiredBiasLat"
},
{
"$ref": "#/parameters/RequiredBiasLon"
},
{
"$ref": "#/parameters/LimitSearch"
},
{
"$ref": "#/parameters/Offset"
},
{
"$ref": "#/parameters/CategorySet"
},
{
"$ref": "#/parameters/CountrySet"
},
{
"name": "radius",
"in": "query",
"x-ms-client-name": "radiusInMeters",
"description": "The radius in meters to for the results to be constrained to the defined area, Min value is 1, Max Value is 50000.",
"type": "integer"
},
{
"$ref": "../../../Common/preview/1.0/common.json#/parameters/Language"
},
{
"$ref": "#/parameters/ExtendedPostalCodesFor"
},
{
"$ref": "#/parameters/BrandSet"
},
{
"$ref": "#/parameters/ConnectorSet"
},
{
"$ref": "../../../Common/preview/1.0/common.json#/parameters/View"
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/SearchAddressResult"
}
},
"default": {
"$ref": "../../../Common/preview/1.0/common.json#/responses/default"
}
}
}
},
"/search/poi/category/{format}": {
"get": {
"summary": "Use to search for points of interest by category.",
"description": "\n\nThe `Get Search POI Category` API is an HTTP `GET` request that allows you to request POI results from given category. Useful to query POIs from one category at a time. Endpoint will only return POI results which are categorized as specified. Response includes POI details such as address, coordinate location and classification.",
"operationId": "Search_GetSearchPOICategory",
"x-ms-client-name": "SearchPointOfInterestCategory",
"x-ms-examples": {
"Search for ATM's within 2 miles of Times Square NY and return the top 3 results": {
"$ref": "./examples/GetSearchPOICategory.json"
}
},
"parameters": [
{
"$ref": "../../../Common/preview/1.0/common.json#/parameters/ClientId"
},
{
"$ref": "#/parameters/ApiVersion"
},
{
"$ref": "../../../Common/preview/1.0/common.json#/parameters/ResponseFormat"
},
{
"name": "query",
"in": "query",
"description": "The POI category to search for (e.g., \"AIRPORT\", \"RESTAURANT\"), must be properly URL encoded. Supported main categories can be requested by calling [Get Search POI Category Tree](https://aka.ms/AzureMapsPOICategoryTree) API. For a list of available categories, see [Azure Maps supported categories](/azure/azure-maps/supported-search-categories). We recommend to use POI Search Category Tree API to request the supported categories.",
"required": true,
"type": "string"
},
{
"$ref": "#/parameters/Typeahead"
},
{
"$ref": "#/parameters/LimitSearch"
},
{
"$ref": "#/parameters/Offset"
},
{
"$ref": "#/parameters/CategorySet"
},
{
"$ref": "#/parameters/CountrySet"
},
{
"$ref": "#/parameters/OptionalBiasLat"
},
{
"$ref": "#/parameters/OptionalBiasLon"
},
{
"$ref": "#/parameters/Radius"
},
{
"$ref": "#/parameters/BoundingBoxTopLeft"
},
{
"$ref": "#/parameters/BoundingBoxBottomRight"
},
{
"$ref": "../../../Common/preview/1.0/common.json#/parameters/Language"
},
{
"$ref": "#/parameters/ExtendedPostalCodesFor"
},
{
"$ref": "#/parameters/BrandSet"
},
{
"$ref": "#/parameters/ConnectorSet"
},
{
"$ref": "../../../Common/preview/1.0/common.json#/parameters/View"
},
{
"$ref": "#/parameters/OperatingHours"
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/SearchAddressResult"
}
},
"default": {
"$ref": "../../../Common/preview/1.0/common.json#/responses/default"
}
}
}
},
"/search/poi/category/tree/{format}": {
"get": {
"summary": "Use to get a list of supported Points of Interest (POI) categories and subcategories.",
"description": "\n\nThe `Get Search POI Category Tree` API is an HTTP `GET` request that provides a full list of supported Points of Interest (POI) categories and subcategories together with their translations and synonyms. The returned content can be used to provide more meaningful results through other Search Service APIs, like [Get Search POI](/rest/api/maps/search/get-search-poi?view=rest-maps-1.0).",
"operationId": "Search_GetSearchPOICategoryTree",
"x-ms-client-name": "GetPointOfInterestCategoryTree",
"x-ms-examples": {
"Get the POI Category Tree (only partial response shown below)": {
"$ref": "./examples/GetSearchPOICategoryTree.json"
}
},
"parameters": [
{
"$ref": "../../../Common/preview/1.0/common.json#/parameters/ClientId"
},
{
"$ref": "#/parameters/ApiVersion"
},
{
"$ref": "../../../Common/preview/1.0/common.json#/parameters/JsonFormat"
},
{
"name": "language",
"in": "query",
"description": "Language in which search results should be returned. Should be one of supported IETF language tags, except NGT and NGT-Latn. Language tag is case insensitive. When data in specified language is not available for a specific field, default language is used (English).\n\nPlease refer to [Supported Languages](/azure/azure-maps/supported-languages) for details.",
"type": "string"
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/PointOfInterestCategoryTreeResult"
}
},
"default": {
"$ref": "../../../Common/preview/1.0/common.json#/responses/default"
}
}
}
},
"/search/address/{format}": {
"get": {
"summary": "Use to get latitude and longitude coordinates of a street address in an unstructured or query input format.",
"description": "\n\nThe `Get Search Address` API is an HTTP `GET` request returns the latitude and longitude coordinates when passed in a street address or name of a place as the search criteria. \n\nIn many cases, the complete search service might be too much, for instance if you are only interested in traditional geocoding. Search can also be accessed for address look up exclusively. The geocoding is performed by hitting the geocode endpoint with just the address or partial address in question. The geocoding search index will be queried for everything above the street level data. No POIs will be returned. Note that the geocoder is very tolerant of typos and incomplete addresses. It will also handle everything from exact street addresses or street or intersections as well as higher level geographies such as city centers, counties, states etc.",
"operationId": "Search_GetSearchAddress",
"x-ms-client-name": "SearchAddress",
"x-ms-examples": {
"Search detail address 15127 NE 24th Street, Redmond, WA 98052": {
"$ref": "./examples/GetSearchAddress.json"
}
},
"parameters": [
{
"$ref": "../../../Common/preview/1.0/common.json#/parameters/ClientId"
},
{
"$ref": "#/parameters/ApiVersion"
},
{
"$ref": "../../../Common/preview/1.0/common.json#/parameters/ResponseFormat"
},
{
"name": "query",
"in": "query",
"description": "The address to search for (e.g., \"1 Microsoft way, Redmond, WA\"), must be properly URL encoded.",
"required": true,
"type": "string"
},
{
"$ref": "#/parameters/Typeahead"
},
{
"$ref": "#/parameters/LimitSearch"
},
{
"$ref": "#/parameters/Offset"
},
{
"$ref": "#/parameters/CountrySet"
},
{
"$ref": "#/parameters/OptionalBiasLat"
},
{
"$ref": "#/parameters/OptionalBiasLon"
},
{
"$ref": "#/parameters/Radius"
},
{
"$ref": "#/parameters/BoundingBoxTopLeft"
},
{
"$ref": "#/parameters/BoundingBoxBottomRight"
},
{
"$ref": "../../../Common/preview/1.0/common.json#/parameters/Language"
},
{
"$ref": "#/parameters/ExtendedPostalCodesFor"
},
{
"$ref": "#/parameters/EntityType"
},
{
"$ref": "../../../Common/preview/1.0/common.json#/parameters/View"
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/SearchAddressResult"
}
},
"default": {
"$ref": "../../../Common/preview/1.0/common.json#/responses/default"
}
}
}
},
"/search/address/reverse/{format}": {
"get": {
"summary": "Use to get a street address and location info from latitude and longitude coordinates.",
"description": "The `Get Search Address Reverse` API is and HTTP `GET` request that returns a street address or location when given latitude and longitude coordinates.\n\nThere may be times when you need to translate a coordinate (example: 37.786505, -122.3862) into a human understandable street address. Most often this is needed in tracking applications where you receive a GPS feed from the device or asset and wish to know what address where the coordinate is located. This endpoint will return address information for a given coordinate.",
"operationId": "Search_GetSearchAddressReverse",
"x-ms-client-name": "ReverseSearchAddress",
"x-ms-examples": {
"Searches addresses for coordinates 37.337,-121.89": {
"$ref": "./examples/GetSearchAddressReverse.json"
}
},
"parameters": [
{
"$ref": "../../../Common/preview/1.0/common.json#/parameters/ClientId"
},
{
"$ref": "#/parameters/ApiVersion"
},
{
"$ref": "../../../Common/preview/1.0/common.json#/parameters/ResponseFormat"
},
{