TomTom Maps for JavaScript
    Preparing search index...

    Type Alias ChargingPark

    Information about an EV charging park.

    Describes the charging infrastructure at a location, including available connector types and counts. This is static information about the facility.

    const chargingPark: ChargingPark = {
    connectors: [
    { connector: {...}, count: 4 },
    { connector: {...}, count: 2 }
    ]
    };
    type ChargingPark = {
        connectors: ConnectorCount[];
    }
    Index

    Properties

    Properties

    connectors: ConnectorCount[]

    Count of connectors grouped by type and power level.

    Provides aggregate counts without real-time availability status. This is static infrastructure information about how many of each connector type exist at the location.

    For real-time availability, use the availability property instead. This field shows total counts regardless of current operational status.