Azure Maps Search Package client library for Python¶
This package contains a Python SDK for Azure Maps Services for Search. Read more about Azure Maps Services here
Source code | API reference documentation | Product documentation
Disclaimer¶
Azure SDK Python packages support for Python 2.7 has ended 01 January 2022. For more information and questions, please refer to https://github.com/Azure/azure-sdk-for-python/issues/20691
Getting started¶
Prerequisites¶
Python 3.8 or later is required to use this package.
An Azure subscription and an Azure Maps account.
A deployed Maps Services resource. You can create the resource via Azure Portal or Azure CLI.
If you use Azure CLI, replace <resource-group-name>
and <account-name>
of your choice, and select a proper pricing tier based on your needs via the <sku-name>
parameter. Please refer to this page for more details.
az maps account create --resource-group <resource-group-name> --account-name <account-name> --sku <sku-name>
Install the package¶
Install the Azure Maps Service Search SDK.
pip install azure-maps-search
Create and Authenticate the MapsSearchClient¶
To create a client object to access the Azure Maps Search API, you will need a credential object. Azure Maps Search client also support three ways to authenticate.
1. Authenticate with a Subscription Key Credential¶
You can authenticate with your Azure Maps Subscription Key.
Once the Azure Maps Subscription Key is created, set the value of the key as environment variable: AZURE_SUBSCRIPTION_KEY
.
Then pass an AZURE_SUBSCRIPTION_KEY
as the credential
parameter into an instance of AzureKeyCredential.
from azure.core.credentials import AzureKeyCredential
from azure.maps.search import MapsSearchClient
credential = AzureKeyCredential(os.environ.get("AZURE_SUBSCRIPTION_KEY"))
search_client = MapsSearchClient(
credential=credential,
)
2. Authenticate with a SAS Credential¶
Shared access signature (SAS) tokens are authentication tokens created using the JSON Web token (JWT) format and are cryptographically signed to prove authentication for an application to the Azure Maps REST API.
To authenticate with a SAS token in Python, you’ll need to generate one using the azure-mgmt-maps package.
We need to tell user to install azure-mgmt-maps
: pip install azure-mgmt-maps
Here’s how you can generate the SAS token using the list_sas method from azure-mgmt-maps:
from azure.identity import DefaultAzureCredential
from azure.mgmt.maps import AzureMapsManagementClient
"""
# PREREQUISITES
pip install azure-identity
pip install azure-mgmt-maps
# USAGE
python account_list_sas.py
Before run the sample, please set the values of the client ID, tenant ID and client secret
of the AAD application as environment variables: AZURE_CLIENT_ID, AZURE_TENANT_ID,
AZURE_CLIENT_SECRET. For more info about how to get the value, please see:
https://docs.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal
"""
def main():
client = AzureMapsManagementClient(
credential=DefaultAzureCredential(),
subscription_id="your-subscription-id",
)
response = client.accounts.list_sas(
resource_group_name="myResourceGroup",
account_name="myMapsAccount",
maps_account_sas_parameters={
"expiry": "2017-05-24T11:42:03.1567373Z",
"maxRatePerSecond": 500,
"principalId": "your-principal-id",
"regions": ["eastus"],
"signingKey": "primaryKey",
"start": "2017-05-24T10:42:03.1567373Z",
},
)
print(response)
Once the SAS token is created, set the value of the token as environment variable: AZURE_SAS_TOKEN
.
Then pass an AZURE_SAS_TOKEN
as the credential
parameter into an instance of AzureSasCredential.
import os
from azure.core.credentials import AzureSASCredential
from azure.maps.search import MapsSearchClient
credential = AzureSASCredential(os.environ.get("AZURE_SAS_TOKEN"))
search_client = MapsSearchClient(
credential=credential,
)
3. Authenticate with an Microsoft Entra ID credential¶
You can authenticate with Microsoft Entra ID token credential using the Azure Identity library. Authentication by using Microsoft Entra ID requires some initial setup:
Install azure-identity
Register a new Microsoft Entra ID application
Grant access to Azure Maps by assigning the suitable role to your service principal. Please refer to the Manage authentication page.
After setup, you can choose which type of credential from azure.identity
to use.
As an example, DefaultAzureCredential
can be used to authenticate the client:
Next, set the values of the client ID, tenant ID, and client secret of the Microsoft Entra ID application as environment variables:
AZURE_CLIENT_ID
, AZURE_TENANT_ID
, AZURE_CLIENT_SECRET
You will also need to specify the Azure Maps resource you intend to use by specifying the clientId
in the client options. The Azure Maps resource client id can be found in the Authentication sections in the Azure Maps resource. Please refer to the documentation on how to find it.
from azure.maps.search import MapsSearchClient
from azure.identity import DefaultAzureCredential
credential = DefaultAzureCredential()
search_client = MapsSearchClient(credential=credential)
Key concepts¶
The Azure Maps Search client library for Python allows you to interact with each of the components through the use of a dedicated client object.
Sync Clients¶
MapsSearchClient
is the primary client for developers using the Azure Maps Search client library for Python.
Once you initialized a MapsSearchClient
class, you can explore the methods on this client object to understand the different features of the Azure Maps Search service that you can access.
Async Clients¶
This library includes a complete async API supported on Python 3.5+. To use it, you must first install an async transport, such as aiohttp. See azure-core documentation for more information.
Async clients and credentials should be closed when they’re no longer needed. These objects are async context managers and define async close
methods.
Examples¶
The following sections provide several code snippets covering some of the most common Azure Maps Search tasks, including:
Geocode an address¶
You can use an authenticated client to convert an address into latitude and longitude coordinates. This process is also called geocoding. In addition to returning the coordinates, the response will also return detailed address properties such as street, postal code, municipality, and country/region information.
import os
from azure.core.exceptions import HttpResponseError
subscription_key = os.getenv("AZURE_SUBSCRIPTION_KEY", "your subscription key")
def geocode():
from azure.core.credentials import AzureKeyCredential
from azure.maps.search import MapsSearchClient
maps_search_client = MapsSearchClient(credential=AzureKeyCredential(subscription_key))
try:
result = maps_search_client.get_geocoding(query="15127 NE 24th Street, Redmond, WA 98052")
if result.get('features', False):
coordinates = result['features'][0]['geometry']['coordinates']
longitude = coordinates[0]
latitude = coordinates[1]
print(longitude, latitude)
else:
print("No results")
except HttpResponseError as exception:
if exception.error is not None:
print(f"Error Code: {exception.error.code}")
print(f"Message: {exception.error.message}")
if __name__ == '__main__':
geocode()
Batch geocode addresses¶
This sample demonstrates how to perform batch search address.
import os
from azure.core.exceptions import HttpResponseError
subscription_key = os.getenv("AZURE_SUBSCRIPTION_KEY", "your subscription key")
def geocode_batch():
from azure.core.credentials import AzureKeyCredential
from azure.maps.search import MapsSearchClient
maps_search_client = MapsSearchClient(credential=AzureKeyCredential(subscription_key))
try:
result = maps_search_client.get_geocoding_batch({
"batchItems": [
{"query": "400 Broad St, Seattle, WA 98109"},
{"query": "15127 NE 24th Street, Redmond, WA 98052"},
],
},)
if not result.get('batchItems', False):
print("No batchItems in geocoding")
return
for item in result['batchItems']:
if not item.get('features', False):
print(f"No features in item: {item}")
continue
coordinates = item['features'][0]['geometry']['coordinates']
longitude, latitude = coordinates
print(longitude, latitude)
except HttpResponseError as exception:
if exception.error is not None:
print(f"Error Code: {exception.error.code}")
print(f"Message: {exception.error.message}")
if __name__ == '__main__':
geocode_batch()
Get polygons for a given location¶
This sample demonstrates how to search polygons.
import os
from azure.core.exceptions import HttpResponseError
from azure.maps.search import Resolution
from azure.maps.search import BoundaryResultType
subscription_key = os.getenv("AZURE_SUBSCRIPTION_KEY", "your subscription key")
def get_polygon():
from azure.core.credentials import AzureKeyCredential
from azure.maps.search import MapsSearchClient
maps_search_client = MapsSearchClient(credential=AzureKeyCredential(subscription_key))
try:
result = maps_search_client.get_polygon(
coordinates=[-122.204141, 47.61256],
result_type=BoundaryResultType.LOCALITY,
resolution=Resolution.SMALL,
)
if not result.get('geometry', False):
print("No geometry found")
return
print(result["geometry"])
except HttpResponseError as exception:
if exception.error is not None:
print(f"Error Code: {exception.error.code}")
print(f"Message: {exception.error.message}")
if __name__ == '__main__':
get_polygon()
Make a Reverse Address Search to translate coordinate location to street address¶
You can translate coordinates into human-readable street addresses. This process is also called reverse geocoding. This is often used for applications that consume GPS feeds and want to discover addresses at specific coordinate points.
import os
from azure.core.exceptions import HttpResponseError
subscription_key = os.getenv("AZURE_SUBSCRIPTION_KEY", "your subscription key")
def reverse_geocode():
from azure.core.credentials import AzureKeyCredential
from azure.maps.search import MapsSearchClient
maps_search_client = MapsSearchClient(credential=AzureKeyCredential(subscription_key))
try:
result = maps_search_client.get_reverse_geocoding(coordinates=[-122.138679, 47.630356])
if result.get('features', False):
props = result['features'][0].get('properties', {})
if props and props.get('address', False):
print(props['address'].get('formattedAddress', 'No formatted address found'))
else:
print("Address is None")
else:
print("No features available")
except HttpResponseError as exception:
if exception.error is not None:
print(f"Error Code: {exception.error.code}")
print(f"Message: {exception.error.message}")
if __name__ == '__main__':
reverse_geocode()
Batch request for reverse geocoding¶
This sample demonstrates how to perform reverse search by given coordinates in batch.
import os
from azure.core.credentials import AzureKeyCredential
from azure.core.exceptions import HttpResponseError
from azure.maps.search import MapsSearchClient
subscription_key = os.getenv("AZURE_SUBSCRIPTION_KEY", "your subscription key")
def reverse_geocode_batch():
maps_search_client = MapsSearchClient(credential=AzureKeyCredential(subscription_key))
try:
result = maps_search_client.get_reverse_geocoding_batch({
"batchItems": [
{"coordinates": [-122.349309, 47.620498]},
{"coordinates": [-122.138679, 47.630356]},
],
},)
if result.get('batchItems', False):
for idx, item in enumerate(result['batchItems']):
features = item['features']
if features:
props = features[0].get('properties', {})
if props and props.get('address', False):
print(
props['address'].get('formattedAddress', f'No formatted address for item {idx + 1} found'))
else:
print(f"Address {idx + 1} is None")
else:
print(f"No features available for item {idx + 1}")
else:
print("No batch items found")
except HttpResponseError as exception:
if exception.error is not None:
print(f"Error Code: {exception.error.code}")
print(f"Message: {exception.error.message}")
if __name__ == '__main__':
reverse_geocode_batch()
Troubleshooting¶
General¶
Maps Search clients raise exceptions defined in Azure Core.
This list can be used for reference to catch thrown exceptions. To get the specific error code of the exception, use the error_code
attribute, i.e, exception.error_code
.
Logging¶
This library uses the standard logging library for logging. Basic information about HTTP sessions (URLs, headers, etc.) is logged at INFO level.
Detailed DEBUG level logging, including request/response bodies and unredacted headers, can be enabled on a client with the logging_enable
argument:
import sys
import logging
from azure.maps.search import MapsSearchClient
# Create a logger for the 'azure.maps.search' SDK
logger = logging.getLogger('azure.maps.search')
logger.setLevel(logging.DEBUG)
# Configure a console output
handler = logging.StreamHandler(stream=sys.stdout)
logger.addHandler(handler)
Similarly, logging_enable
can enable detailed logging for a single operation,
even when it isn’t enabled for the client:
service_client.get_service_stats(logging_enable=True)
Additional¶
Still running into issues? If you encounter any bugs or have suggestions, please file an issue in the Issues section of the project.
Next steps¶
More sample code¶
Get started with our Maps Search samples (Async Version samples).
Several Azure Maps Search Python SDK samples are available to you in the SDK’s GitHub repository. These samples provide example code for additional scenarios commonly encountered while working with Maps Search
set AZURE_SUBSCRIPTION_KEY="<RealSubscriptionKey>"
pip install azure-maps-search --pre
python samples/sample_geocode.py
python samples/sample_geocode_batch.py
python samples/sample_get_polygon.py
python samples/sample_reverse_geocode.py
python samples/sample_reverse_geocode_batch.py
Notes:
--pre
flag can be optionally added, it is to include pre-release and development versions forpip install
. By default,pip
only finds stable versions.
Further detail please refer to Samples Introduction
Additional documentation¶
For more extensive documentation on Azure Maps Search, see the Azure Maps Search documentation on docs.microsoft.com.
Contributing¶
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.
When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.
Indices and tables¶
Developer Documentation
- azure.maps.search package
BoundaryResultType
BoundaryResultType.capitalize()
BoundaryResultType.casefold()
BoundaryResultType.center()
BoundaryResultType.count()
BoundaryResultType.encode()
BoundaryResultType.endswith()
BoundaryResultType.expandtabs()
BoundaryResultType.find()
BoundaryResultType.format()
BoundaryResultType.format_map()
BoundaryResultType.index()
BoundaryResultType.isalnum()
BoundaryResultType.isalpha()
BoundaryResultType.isascii()
BoundaryResultType.isdecimal()
BoundaryResultType.isdigit()
BoundaryResultType.isidentifier()
BoundaryResultType.islower()
BoundaryResultType.isnumeric()
BoundaryResultType.isprintable()
BoundaryResultType.isspace()
BoundaryResultType.istitle()
BoundaryResultType.isupper()
BoundaryResultType.join()
BoundaryResultType.ljust()
BoundaryResultType.lower()
BoundaryResultType.lstrip()
BoundaryResultType.maketrans()
BoundaryResultType.partition()
BoundaryResultType.removeprefix()
BoundaryResultType.removesuffix()
BoundaryResultType.replace()
BoundaryResultType.rfind()
BoundaryResultType.rindex()
BoundaryResultType.rjust()
BoundaryResultType.rpartition()
BoundaryResultType.rsplit()
BoundaryResultType.rstrip()
BoundaryResultType.split()
BoundaryResultType.splitlines()
BoundaryResultType.startswith()
BoundaryResultType.strip()
BoundaryResultType.swapcase()
BoundaryResultType.title()
BoundaryResultType.translate()
BoundaryResultType.upper()
BoundaryResultType.zfill()
BoundaryResultType.ADMIN_DISTRICT
BoundaryResultType.ADMIN_DISTRICT2
BoundaryResultType.COUNTRY_REGION
BoundaryResultType.LOCALITY
BoundaryResultType.NEIGHBORHOOD
BoundaryResultType.POSTAL_CODE
BoundaryResultType.POSTAL_CODE2
BoundaryResultType.POSTAL_CODE3
BoundaryResultType.POSTAL_CODE4
CalculationMethod
CalculationMethod.capitalize()
CalculationMethod.casefold()
CalculationMethod.center()
CalculationMethod.count()
CalculationMethod.encode()
CalculationMethod.endswith()
CalculationMethod.expandtabs()
CalculationMethod.find()
CalculationMethod.format()
CalculationMethod.format_map()
CalculationMethod.index()
CalculationMethod.isalnum()
CalculationMethod.isalpha()
CalculationMethod.isascii()
CalculationMethod.isdecimal()
CalculationMethod.isdigit()
CalculationMethod.isidentifier()
CalculationMethod.islower()
CalculationMethod.isnumeric()
CalculationMethod.isprintable()
CalculationMethod.isspace()
CalculationMethod.istitle()
CalculationMethod.isupper()
CalculationMethod.join()
CalculationMethod.ljust()
CalculationMethod.lower()
CalculationMethod.lstrip()
CalculationMethod.maketrans()
CalculationMethod.partition()
CalculationMethod.removeprefix()
CalculationMethod.removesuffix()
CalculationMethod.replace()
CalculationMethod.rfind()
CalculationMethod.rindex()
CalculationMethod.rjust()
CalculationMethod.rpartition()
CalculationMethod.rsplit()
CalculationMethod.rstrip()
CalculationMethod.split()
CalculationMethod.splitlines()
CalculationMethod.startswith()
CalculationMethod.strip()
CalculationMethod.swapcase()
CalculationMethod.title()
CalculationMethod.translate()
CalculationMethod.upper()
CalculationMethod.zfill()
CalculationMethod.INTERPOLATION
CalculationMethod.INTERPOLATION_OFFSET
CalculationMethod.PARCEL
CalculationMethod.ROOFTOP
Confidence
Confidence.capitalize()
Confidence.casefold()
Confidence.center()
Confidence.count()
Confidence.encode()
Confidence.endswith()
Confidence.expandtabs()
Confidence.find()
Confidence.format()
Confidence.format_map()
Confidence.index()
Confidence.isalnum()
Confidence.isalpha()
Confidence.isascii()
Confidence.isdecimal()
Confidence.isdigit()
Confidence.isidentifier()
Confidence.islower()
Confidence.isnumeric()
Confidence.isprintable()
Confidence.isspace()
Confidence.istitle()
Confidence.isupper()
Confidence.join()
Confidence.ljust()
Confidence.lower()
Confidence.lstrip()
Confidence.maketrans()
Confidence.partition()
Confidence.removeprefix()
Confidence.removesuffix()
Confidence.replace()
Confidence.rfind()
Confidence.rindex()
Confidence.rjust()
Confidence.rpartition()
Confidence.rsplit()
Confidence.rstrip()
Confidence.split()
Confidence.splitlines()
Confidence.startswith()
Confidence.strip()
Confidence.swapcase()
Confidence.title()
Confidence.translate()
Confidence.upper()
Confidence.zfill()
Confidence.HIGH
Confidence.LOW
Confidence.MEDIUM
FeatureCollection
FeatureCollection.capitalize()
FeatureCollection.casefold()
FeatureCollection.center()
FeatureCollection.count()
FeatureCollection.encode()
FeatureCollection.endswith()
FeatureCollection.expandtabs()
FeatureCollection.find()
FeatureCollection.format()
FeatureCollection.format_map()
FeatureCollection.index()
FeatureCollection.isalnum()
FeatureCollection.isalpha()
FeatureCollection.isascii()
FeatureCollection.isdecimal()
FeatureCollection.isdigit()
FeatureCollection.isidentifier()
FeatureCollection.islower()
FeatureCollection.isnumeric()
FeatureCollection.isprintable()
FeatureCollection.isspace()
FeatureCollection.istitle()
FeatureCollection.isupper()
FeatureCollection.join()
FeatureCollection.ljust()
FeatureCollection.lower()
FeatureCollection.lstrip()
FeatureCollection.maketrans()
FeatureCollection.partition()
FeatureCollection.removeprefix()
FeatureCollection.removesuffix()
FeatureCollection.replace()
FeatureCollection.rfind()
FeatureCollection.rindex()
FeatureCollection.rjust()
FeatureCollection.rpartition()
FeatureCollection.rsplit()
FeatureCollection.rstrip()
FeatureCollection.split()
FeatureCollection.splitlines()
FeatureCollection.startswith()
FeatureCollection.strip()
FeatureCollection.swapcase()
FeatureCollection.title()
FeatureCollection.translate()
FeatureCollection.upper()
FeatureCollection.zfill()
FeatureCollection.FEATURE_COLLECTION
FeatureType
FeatureType.capitalize()
FeatureType.casefold()
FeatureType.center()
FeatureType.count()
FeatureType.encode()
FeatureType.endswith()
FeatureType.expandtabs()
FeatureType.find()
FeatureType.format()
FeatureType.format_map()
FeatureType.index()
FeatureType.isalnum()
FeatureType.isalpha()
FeatureType.isascii()
FeatureType.isdecimal()
FeatureType.isdigit()
FeatureType.isidentifier()
FeatureType.islower()
FeatureType.isnumeric()
FeatureType.isprintable()
FeatureType.isspace()
FeatureType.istitle()
FeatureType.isupper()
FeatureType.join()
FeatureType.ljust()
FeatureType.lower()
FeatureType.lstrip()
FeatureType.maketrans()
FeatureType.partition()
FeatureType.removeprefix()
FeatureType.removesuffix()
FeatureType.replace()
FeatureType.rfind()
FeatureType.rindex()
FeatureType.rjust()
FeatureType.rpartition()
FeatureType.rsplit()
FeatureType.rstrip()
FeatureType.split()
FeatureType.splitlines()
FeatureType.startswith()
FeatureType.strip()
FeatureType.swapcase()
FeatureType.title()
FeatureType.translate()
FeatureType.upper()
FeatureType.zfill()
FeatureType.FEATURE
GeoJsonObjectType
GeoJsonObjectType.capitalize()
GeoJsonObjectType.casefold()
GeoJsonObjectType.center()
GeoJsonObjectType.count()
GeoJsonObjectType.encode()
GeoJsonObjectType.endswith()
GeoJsonObjectType.expandtabs()
GeoJsonObjectType.find()
GeoJsonObjectType.format()
GeoJsonObjectType.format_map()
GeoJsonObjectType.index()
GeoJsonObjectType.isalnum()
GeoJsonObjectType.isalpha()
GeoJsonObjectType.isascii()
GeoJsonObjectType.isdecimal()
GeoJsonObjectType.isdigit()
GeoJsonObjectType.isidentifier()
GeoJsonObjectType.islower()
GeoJsonObjectType.isnumeric()
GeoJsonObjectType.isprintable()
GeoJsonObjectType.isspace()
GeoJsonObjectType.istitle()
GeoJsonObjectType.isupper()
GeoJsonObjectType.join()
GeoJsonObjectType.ljust()
GeoJsonObjectType.lower()
GeoJsonObjectType.lstrip()
GeoJsonObjectType.maketrans()
GeoJsonObjectType.partition()
GeoJsonObjectType.removeprefix()
GeoJsonObjectType.removesuffix()
GeoJsonObjectType.replace()
GeoJsonObjectType.rfind()
GeoJsonObjectType.rindex()
GeoJsonObjectType.rjust()
GeoJsonObjectType.rpartition()
GeoJsonObjectType.rsplit()
GeoJsonObjectType.rstrip()
GeoJsonObjectType.split()
GeoJsonObjectType.splitlines()
GeoJsonObjectType.startswith()
GeoJsonObjectType.strip()
GeoJsonObjectType.swapcase()
GeoJsonObjectType.title()
GeoJsonObjectType.translate()
GeoJsonObjectType.upper()
GeoJsonObjectType.zfill()
GeoJsonObjectType.GEO_JSON_FEATURE
GeoJsonObjectType.GEO_JSON_FEATURE_COLLECTION
GeoJsonObjectType.GEO_JSON_GEOMETRY_COLLECTION
GeoJsonObjectType.GEO_JSON_LINE_STRING
GeoJsonObjectType.GEO_JSON_MULTI_LINE_STRING
GeoJsonObjectType.GEO_JSON_MULTI_POINT
GeoJsonObjectType.GEO_JSON_MULTI_POLYGON
GeoJsonObjectType.GEO_JSON_POINT
GeoJsonObjectType.GEO_JSON_POLYGON
LocalizedMapView
LocalizedMapView.capitalize()
LocalizedMapView.casefold()
LocalizedMapView.center()
LocalizedMapView.count()
LocalizedMapView.encode()
LocalizedMapView.endswith()
LocalizedMapView.expandtabs()
LocalizedMapView.find()
LocalizedMapView.format()
LocalizedMapView.format_map()
LocalizedMapView.index()
LocalizedMapView.isalnum()
LocalizedMapView.isalpha()
LocalizedMapView.isascii()
LocalizedMapView.isdecimal()
LocalizedMapView.isdigit()
LocalizedMapView.isidentifier()
LocalizedMapView.islower()
LocalizedMapView.isnumeric()
LocalizedMapView.isprintable()
LocalizedMapView.isspace()
LocalizedMapView.istitle()
LocalizedMapView.isupper()
LocalizedMapView.join()
LocalizedMapView.ljust()
LocalizedMapView.lower()
LocalizedMapView.lstrip()
LocalizedMapView.maketrans()
LocalizedMapView.partition()
LocalizedMapView.removeprefix()
LocalizedMapView.removesuffix()
LocalizedMapView.replace()
LocalizedMapView.rfind()
LocalizedMapView.rindex()
LocalizedMapView.rjust()
LocalizedMapView.rpartition()
LocalizedMapView.rsplit()
LocalizedMapView.rstrip()
LocalizedMapView.split()
LocalizedMapView.splitlines()
LocalizedMapView.startswith()
LocalizedMapView.strip()
LocalizedMapView.swapcase()
LocalizedMapView.title()
LocalizedMapView.translate()
LocalizedMapView.upper()
LocalizedMapView.zfill()
LocalizedMapView.AE
LocalizedMapView.AR
LocalizedMapView.AUTO
LocalizedMapView.BH
LocalizedMapView.IN
LocalizedMapView.IQ
LocalizedMapView.JO
LocalizedMapView.KW
LocalizedMapView.LB
LocalizedMapView.MA
LocalizedMapView.OM
LocalizedMapView.PK
LocalizedMapView.PS
LocalizedMapView.QA
LocalizedMapView.SA
LocalizedMapView.SY
LocalizedMapView.UNIFIED
LocalizedMapView.YE
MapsSearchClient
MatchCodes
MatchCodes.capitalize()
MatchCodes.casefold()
MatchCodes.center()
MatchCodes.count()
MatchCodes.encode()
MatchCodes.endswith()
MatchCodes.expandtabs()
MatchCodes.find()
MatchCodes.format()
MatchCodes.format_map()
MatchCodes.index()
MatchCodes.isalnum()
MatchCodes.isalpha()
MatchCodes.isascii()
MatchCodes.isdecimal()
MatchCodes.isdigit()
MatchCodes.isidentifier()
MatchCodes.islower()
MatchCodes.isnumeric()
MatchCodes.isprintable()
MatchCodes.isspace()
MatchCodes.istitle()
MatchCodes.isupper()
MatchCodes.join()
MatchCodes.ljust()
MatchCodes.lower()
MatchCodes.lstrip()
MatchCodes.maketrans()
MatchCodes.partition()
MatchCodes.removeprefix()
MatchCodes.removesuffix()
MatchCodes.replace()
MatchCodes.rfind()
MatchCodes.rindex()
MatchCodes.rjust()
MatchCodes.rpartition()
MatchCodes.rsplit()
MatchCodes.rstrip()
MatchCodes.split()
MatchCodes.splitlines()
MatchCodes.startswith()
MatchCodes.strip()
MatchCodes.swapcase()
MatchCodes.title()
MatchCodes.translate()
MatchCodes.upper()
MatchCodes.zfill()
MatchCodes.AMBIGUOUS
MatchCodes.GOOD
MatchCodes.UP_HIERARCHY
Resolution
Resolution.capitalize()
Resolution.casefold()
Resolution.center()
Resolution.count()
Resolution.encode()
Resolution.endswith()
Resolution.expandtabs()
Resolution.find()
Resolution.format()
Resolution.format_map()
Resolution.index()
Resolution.isalnum()
Resolution.isalpha()
Resolution.isascii()
Resolution.isdecimal()
Resolution.isdigit()
Resolution.isidentifier()
Resolution.islower()
Resolution.isnumeric()
Resolution.isprintable()
Resolution.isspace()
Resolution.istitle()
Resolution.isupper()
Resolution.join()
Resolution.ljust()
Resolution.lower()
Resolution.lstrip()
Resolution.maketrans()
Resolution.partition()
Resolution.removeprefix()
Resolution.removesuffix()
Resolution.replace()
Resolution.rfind()
Resolution.rindex()
Resolution.rjust()
Resolution.rpartition()
Resolution.rsplit()
Resolution.rstrip()
Resolution.split()
Resolution.splitlines()
Resolution.startswith()
Resolution.strip()
Resolution.swapcase()
Resolution.title()
Resolution.translate()
Resolution.upper()
Resolution.zfill()
Resolution.HUGE
Resolution.LARGE
Resolution.MEDIUM
Resolution.SMALL
ResultType
ResultType.capitalize()
ResultType.casefold()
ResultType.center()
ResultType.count()
ResultType.encode()
ResultType.endswith()
ResultType.expandtabs()
ResultType.find()
ResultType.format()
ResultType.format_map()
ResultType.index()
ResultType.isalnum()
ResultType.isalpha()
ResultType.isascii()
ResultType.isdecimal()
ResultType.isdigit()
ResultType.isidentifier()
ResultType.islower()
ResultType.isnumeric()
ResultType.isprintable()
ResultType.isspace()
ResultType.istitle()
ResultType.isupper()
ResultType.join()
ResultType.ljust()
ResultType.lower()
ResultType.lstrip()
ResultType.maketrans()
ResultType.partition()
ResultType.removeprefix()
ResultType.removesuffix()
ResultType.replace()
ResultType.rfind()
ResultType.rindex()
ResultType.rjust()
ResultType.rpartition()
ResultType.rsplit()
ResultType.rstrip()
ResultType.split()
ResultType.splitlines()
ResultType.startswith()
ResultType.strip()
ResultType.swapcase()
ResultType.title()
ResultType.translate()
ResultType.upper()
ResultType.zfill()
ResultType.ADDRESS
ResultType.ADMIN_DIVISION1
ResultType.ADMIN_DIVISION2
ResultType.COUNTRY_REGION
ResultType.NEIGHBORHOOD
ResultType.POPULATED_PLACE
ResultType.POSTCODE1
ReverseGeocodingResultType
ReverseGeocodingResultType.capitalize()
ReverseGeocodingResultType.casefold()
ReverseGeocodingResultType.center()
ReverseGeocodingResultType.count()
ReverseGeocodingResultType.encode()
ReverseGeocodingResultType.endswith()
ReverseGeocodingResultType.expandtabs()
ReverseGeocodingResultType.find()
ReverseGeocodingResultType.format()
ReverseGeocodingResultType.format_map()
ReverseGeocodingResultType.index()
ReverseGeocodingResultType.isalnum()
ReverseGeocodingResultType.isalpha()
ReverseGeocodingResultType.isascii()
ReverseGeocodingResultType.isdecimal()
ReverseGeocodingResultType.isdigit()
ReverseGeocodingResultType.isidentifier()
ReverseGeocodingResultType.islower()
ReverseGeocodingResultType.isnumeric()
ReverseGeocodingResultType.isprintable()
ReverseGeocodingResultType.isspace()
ReverseGeocodingResultType.istitle()
ReverseGeocodingResultType.isupper()
ReverseGeocodingResultType.join()
ReverseGeocodingResultType.ljust()
ReverseGeocodingResultType.lower()
ReverseGeocodingResultType.lstrip()
ReverseGeocodingResultType.maketrans()
ReverseGeocodingResultType.partition()
ReverseGeocodingResultType.removeprefix()
ReverseGeocodingResultType.removesuffix()
ReverseGeocodingResultType.replace()
ReverseGeocodingResultType.rfind()
ReverseGeocodingResultType.rindex()
ReverseGeocodingResultType.rjust()
ReverseGeocodingResultType.rpartition()
ReverseGeocodingResultType.rsplit()
ReverseGeocodingResultType.rstrip()
ReverseGeocodingResultType.split()
ReverseGeocodingResultType.splitlines()
ReverseGeocodingResultType.startswith()
ReverseGeocodingResultType.strip()
ReverseGeocodingResultType.swapcase()
ReverseGeocodingResultType.title()
ReverseGeocodingResultType.translate()
ReverseGeocodingResultType.upper()
ReverseGeocodingResultType.zfill()
ReverseGeocodingResultType.ADDRESS
ReverseGeocodingResultType.ADMIN_DIVISION1
ReverseGeocodingResultType.ADMIN_DIVISION2
ReverseGeocodingResultType.COUNTRY_REGION
ReverseGeocodingResultType.NEIGHBORHOOD
ReverseGeocodingResultType.POPULATED_PLACE
ReverseGeocodingResultType.POSTCODE1
UsageType
UsageType.capitalize()
UsageType.casefold()
UsageType.center()
UsageType.count()
UsageType.encode()
UsageType.endswith()
UsageType.expandtabs()
UsageType.find()
UsageType.format()
UsageType.format_map()
UsageType.index()
UsageType.isalnum()
UsageType.isalpha()
UsageType.isascii()
UsageType.isdecimal()
UsageType.isdigit()
UsageType.isidentifier()
UsageType.islower()
UsageType.isnumeric()
UsageType.isprintable()
UsageType.isspace()
UsageType.istitle()
UsageType.isupper()
UsageType.join()
UsageType.ljust()
UsageType.lower()
UsageType.lstrip()
UsageType.maketrans()
UsageType.partition()
UsageType.removeprefix()
UsageType.removesuffix()
UsageType.replace()
UsageType.rfind()
UsageType.rindex()
UsageType.rjust()
UsageType.rpartition()
UsageType.rsplit()
UsageType.rstrip()
UsageType.split()
UsageType.splitlines()
UsageType.startswith()
UsageType.strip()
UsageType.swapcase()
UsageType.title()
UsageType.translate()
UsageType.upper()
UsageType.zfill()
UsageType.DISPLAY
UsageType.ROUTE
- Subpackages