entrances property

EntranceLocations get entrances

Retrieves the entrance locations for this landmark.

This returns an EntranceLocations object containing named entrance points and their access types (for example pedestrian or vehicle).

Returns

Implementation

EntranceLocations get entrances {
  final OperationResult resultString = objectMethod(
    pointerId,
    'Landmark',
    'getEntrances',
  );

  return EntranceLocations.init(resultString['result']);
}