GetNearbyLocationsMapPointsResponse
Contains map points with distance information
points LocationMapPointWithDistance[]
List of location map points with distance from search center. Sorted by distance from nearest to farthest.
point LocationMapPoint
Simplified location representation optimized for map rendering
Unique identifier for the location. Used to fetch full location details.
coordinates Coordinates
Represents a geographic point using decimal degrees
Latitude of the point in decimal degree. Example: 50.770774. Must have 5-7 decimal places.
Longitude of the point in decimal degree. Example: -126.104965. Must have 5-7 decimal places.
Entity code of the CPO that owns this location. Used for filtering and branding.
evses EVSEMapPoint[]
Simplified EVSE data for map display. Contains only essential information for map markers.
Unique identifier for the EVSE. Used to fetch full EVSE details.
List of EVSE capabilities. Indicates supported features like RFID, credit card, etc.
connectors ConnectorMapPoint[]
Simplified connector data for map display. Contains only essential connector information.
Unique identifier for the connector. Used to fetch full connector details.
Type of power (AC or DC). Used for filtering and display.
Current operational status. For example: AVAILABLE, CHARGING, OUTOFORDER.
Whether the connector is enabled for use. Disabled connectors cannot start new sessions.
Whether the connector should be shown on maps. Unpublished connectors are hidden from public views.
Whether the connector is currently online (null if not supported). Indicates real-time connectivity status.
Distance in meters from the search center point. Used for sorting and display.
{
"points": [
{
"point": {
"uid": "string",
"coordinates": {
"latitude": "string",
"longitude": "string"
},
"entity_code": "string",
"evses": [
{
"uid": "string",
"capabilities": [
"string"
],
"connectors": [
{
"uid": "string",
"power_type": "string",
"status": "string",
"is_enabled": true,
"is_published": true,
"online": true
}
]
}
]
},
"distance_meters": 0
}
]
}