entrances property
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
- EntranceLocations: The landmark's entrances and access types.
Implementation
EntranceLocations get entrances {
final OperationResult resultString = objectMethod(
pointerId,
'Landmark',
'getEntrances',
);
return EntranceLocations.init(resultString['result']);
}