latLong property

ILatLong latLong
inherited

The position in the map if the current marker is a "point". For path this makes no sense so a pathmarker must control its own position

Implementation

ILatLong latLong;
  1. @override
void latLong=(ILatLong latLong)
override

The position in the map if the current marker is a "point". For path this makes no sense so a pathmarker must control its own position

Implementation

@override
void set latLong(ILatLong latLong) {
  super.latLong = latLong;
  nodeProperties = NodeProperties(PointOfInterest(0, [], latLong));
}