예제 #1
0
 public OrderInvoker(Activity activity)
 {
     mAct = activity;
     core = new ActiveOrderCore(mAct);
     map  = new MapInvoker(mAct, MapType.Embedded);
     Display();
     Hide();
 }
예제 #2
0
 public Route(MapInvoker invoker, LatLng position)
 {
     Complete     = false;
     this.invoker = invoker;
     this.map     = invoker.Map;
     this.act     = invoker.mAct;
     if (position != null)
     {
         StartDrawing(position);
     }
 }