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