Exemplo n.º 1
0
 public static MapInfoManager getInstance()
 {
     if(instance == null)
     {
         instance = new MapInfoManager();
     }
     return instance;
 }
Exemplo n.º 2
0
 public MapViewForm()
 {
     infoMgr  = new MapInfoManager();
     paramMgr = new ParamMgr();
     planMode = PathPlanMode.MIN_DIST;
     InitializeComponent();
     currentPath = null;
     pathMgr     = null;
 }
Exemplo n.º 3
0
        public MapViewerForm()
        {
            InitializeComponent();
            this.toolbarForm.parentForm = this;
            this.formState = FormState.NORMAL;

            infoMgr = new MapInfoManager();

            this.pixelMap = null;
        }
Exemplo n.º 4
0
        public MapViewForm()
        {
            infoMgr  = new MapInfoManager();
            paramMgr = new ParamMgr();
            appMode  = AppMode.PLANNING;
            planMode = PathPlanMode.MIN_DIST;
            InitializeComponent();
            currentPath = null;
            pathMgr     = null;
            map         = null;

            workingPath  = null;
            mapFilepath  = null;
            dataFilepath = null;
        }