SegmentGeoPoint class

Описывает географическую точку на сегменте и направление сегмента. Геометрия маршрута представляет собой последовательность точек, которые попарно образуют отрезки (сегменты). При этом во всех функциях, работающих с геометрией маршрута считается, что первая точка из образующей отрезок пары входит в этот отрезок, а вторая - нет: [point_1, point_2),[point_2, point_3),...,[point_n-1, point_n)point_last. Последняя точка образует сама с собой отрезок нулевой длины. Т.о. каждая точка маршрута принадлежит ровно одному отрезку. Направление точки point_last не определено.

Constructors

SegmentGeoPoint({required GeoPoint point, required Bearing bearing})
const

Properties

bearing Bearing
final
hashCode int
The hash code for this object.
no setteroverride
point GeoPoint
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

copyWith({GeoPoint? point, Bearing? bearing}) SegmentGeoPoint
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
override