Exemplo n.º 1
0
 public NumericPointMarker(PointLatLng p, NumericPointMarkerType type, int number)
     : base(p)
 {
     this.Type   = type;
     this.Number = number;
 }
Exemplo n.º 2
0
 protected NumericPointMarker(SerializationInfo info, StreamingContext context)
     : base(info, context)
 {
     this.type = Extensions.GetStruct <NumericPointMarkerType>(info, "type", NumericPointMarkerType.none);
 }