U
    Ò­ÒcË  ã                   @   s(   d Z ddlmZ ddd„Zd	dd„ZdS )
z3Performs requests to the Google Maps Geocoding API.é    )ÚconvertNc                 C   sl   i }|r||d< |r||d< |r.t  |¡|d< |r@t  |¡|d< |rL||d< |rX||d< |  d|¡ dg ¡S )	aS  
    Geocoding is the process of converting addresses
    (like ``"1600 Amphitheatre Parkway, Mountain View, CA"``) into geographic
    coordinates (like latitude 37.423021 and longitude -122.083739), which you
    can use to place markers or position the map.

    :param address: The address to geocode.
    :type address: string

    :param place_id: A textual identifier that uniquely identifies a place,
        returned from a Places search.
    :type place_id: string

    :param components: A component filter for which you wish to obtain a
        geocode, for example: ``{'administrative_area': 'TX','country': 'US'}``
    :type components: dict

    :param bounds: The bounding box of the viewport within which to bias geocode
        results more prominently.
    :type bounds: string or dict with northeast and southwest keys.

    :param region: The region code, specified as a ccTLD ("top-level domain")
        two-character value.
    :type region: string

    :param language: The language in which to return results.
    :type language: string

    :rtype: list of geocoding results.
    ÚaddressÚplace_idÚ
componentsÚboundsÚregionÚlanguageú/maps/api/geocode/jsonÚresults)r   r   r   Ú_requestÚget)Úclientr   r   r   r   r   r   Úparams© r   úQ/home/ubuntu/graampay/app_env/lib/python3.8/site-packages/googlemaps/geocoding.pyÚgeocode   s    !r   c                 C   sr   t  |¡rd|krd|i}ndt  |¡i}|r>t  d|¡|d< |rRt  d|¡|d< |r^||d< |  d|¡ d	g ¡S )
a¥  
    Reverse geocoding is the process of converting geographic coordinates into a
    human-readable address.

    :param latlng: The latitude/longitude value or place_id for which you wish
        to obtain the closest, human-readable address.
    :type latlng: string, dict, list, or tuple

    :param result_type: One or more address types to restrict results to.
    :type result_type: string or list of strings

    :param location_type: One or more location types to restrict results to.
    :type location_type: list of strings

    :param language: The language in which to return results.
    :type language: string

    :rtype: list of reverse geocoding results.
    ú,r   Úlatlngú|Úresult_typeÚlocation_typer   r	   r
   )r   Ú	is_stringr   Z	join_listr   r   )r   r   r   r   r   r   r   r   r   Úreverse_geocodeN   s    
r   )NNNNNN)NNN)Ú__doc__Ú
googlemapsr   r   r   r   r   r   r   Ú<module>   s     ÿ
8  ÿ