Esempio n. 1
0
        public void navigateToAddress(QueSelectAddressType address)
        {
            QuePointHandle point    = new QuePointHandle();
            bool           isActive = false;

            if (QueRouteIsActive(ref isActive) == QueErrT16.None)
            {
                if (isActive)
                {
                    QueRouteStop();
                }

                if (QueCreatePointFromAddress(ref address, ref point) == QueErrT16.None)
                {
                    QueRouteToPoint(point);
                    QueClosePoint(point);
                }
            }
        }
Esempio n. 2
0
 private static extern QueErrT16 QueClosePoint(QuePointHandle point);
Esempio n. 3
0
 private static extern QueErrT16 QueViewPointOnMap(QuePointHandle point);
Esempio n. 4
0
 private static extern QueErrT16 QueViewPointDetails(QuePointHandle point);
Esempio n. 5
0
 private static extern QueErrT16 QueSelectPointFromFind(HWND parent, ref QuePointHandle point);
Esempio n. 6
0
 private static extern QueErrT16 QueSelectPointFromMap(HWND parent, QuePointHandle orig, ref QuePointHandle point);
Esempio n. 7
0
 private static extern QueErrT16 QueRouteToPoint(QuePointHandle point);
Esempio n. 8
0
 private static extern QueErrT16 QueSelectAddressFromFind(HWND parent, ref QueSelectAddressType address, ref QuePointHandle point);
Esempio n. 9
0
 private static extern QueErrT16 QueGetPointInfo(QuePointHandle point, ref QuePointType pointInfo);
Esempio n. 10
0
 private static extern QueErrT16 QueDeserializePoint(IntPtr pointData, UInt32 pointDataSize, ref QuePointHandle point);
Esempio n. 11
0
 private static extern UInt32 QueSerializePoint(QuePointHandle point, IntPtr pointData, UInt32 pointDataSize);
Esempio n. 12
0
 private static extern QueErrT16 QueCreatePointFromAddress(ref QueSelectAddressType address, ref QuePointHandle point);
Esempio n. 13
0
 private static extern QueErrT16 QueCreatePoint(QuePointType pointData, ref QuePointHandle point);