TomTom Maps for JavaScript
    Preparing search index...

    Type Alias ChargingStation

    Electric vehicle charging station.

    Represents a complete charging station facility with one or more charging points. A station is typically at a single location but may have multiple charging points.

    const station: ChargingStation = {
    id: 'station-123',
    chargingPoints: [
    { evseId: 'EVSE-001', status: 'Available', ... },
    { evseId: 'EVSE-002', status: 'Occupied', ... }
    ]
    };
    type ChargingStation = {
        chargingPoints: ChargingPoint[];
        id: string;
    }
    Index

    Properties

    Properties

    chargingPoints: ChargingPoint[]

    Array of charging points available at this station.

    Each charging point can serve one vehicle at a time.

    id: string

    Unique identifier for the charging station.