Skip to content

PickupPointMapStrategy model

PickupPointMapStrategy model represents a strategy for showing a pickup point map and consists of the following fields:

  • execute: () => IPickupPointMap

IPickupPointMap

Represents the IPickupPointMap object consisting of the following fields:

  • showMap(choosePickupPointCallback: (pickupPoint: PickupPoint) => void): void

PickupPoint

Represents the PickupPoint model.

Example

An example of such object could look like this:

    class ExampleDeliveryPointMap {
        public async showMap(choosePickupPointCallback) {
            // here goes code for showing a map
        }
    }

    class ExamplePickupPointMapStrategy {
        public execute() {
            return ExampleDeliveryPointMap;
        }
    }