GeoDistanceLocationAnchor
October 23, 2025 ยท View on GitHub
Specifies the location of the pin point used for search
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| lat | float | Latitude of the anchor point | [optional] |
| lon | float | Longitude of the anchor point | [optional] |
Example
from manticoresearch.models.geo_distance_location_anchor import GeoDistanceLocationAnchor
# TODO update the JSON string below
json = "{}"
# create an instance of GeoDistanceLocationAnchor from a JSON string
geo_distance_location_anchor_instance = GeoDistanceLocationAnchor.from_json(json)
# print the JSON string representation of the object
print(GeoDistanceLocationAnchor.to_json())
# convert the object into a dict
geo_distance_location_anchor_dict = geo_distance_location_anchor_instance.to_dict()
# create an instance of GeoDistanceLocationAnchor from a dict
geo_distance_location_anchor_from_dict = GeoDistanceLocationAnchor.from_dict(geo_distance_location_anchor_dict)