2

我已经使用表面视图在我的 android 应用程序中集成了 sygic。我想在那个 sygic 应用程序中导航。我用过这段代码:

SWayPoint wp = new SWayPoint();
wp.Location = new LONGPOSITION(34, 35);
ApplicationAPI.StartNavigation(err, wp, 0, true, false, MAX);

但它不起作用。有任何想法吗 ?

4

2 回答 2

2

我曾经在一个应用程序中实现过 Sygic,这基本上就是我的代码的样子(经过数小时的调试,因为文档很差......):

// surfaceView for displaying the "map"
SurfaceView mSygicSurface = (SurfaceView) findViewById(R.id.sygic_surface); // surface

// api status
int mSygicAPIStatus = -2;

// start the drive
ApplicationAPI.startDrive(new ApiCallback() {
    public void onRunDrive() {
        mSygicSurface.post(new Runnable() {
            public void run() {
                runDrive(mSygicSurface, getPackageName());
            }
        });
    }

    public void onInitApi() // gets called after runDrive();
    {
        mSygicAPIStatus = ApplicationAPI.InitApi(getPackageName(), true, new ApplicationHandler() { /* nothing relevant here */ }); // api initialization

        if (mSygicAPIStatus != 1) {
            // error
            return;
        }
    }
});

一旦你想导航到某个地方:

GeoPoint point = new GeoPoint(/* ... */, /* ... */);
final SWayPoint wayPoint = new SWayPoint("", point.getLongitudeE6(), point.getLatitudeE6());
SError error = new SError();
final int returnCode = ApplicationAPI.StartNavigation(error, point, NavigationParams.NpMessageAvoidTollRoadsUnable, true, true, 0);

请注意,Sygic 使用 E6 坐标。

于 2013-07-09T09:39:57.510 回答
1

这不是问题的答案,而是为了谁在 2017 年寻找奇怪的 sygic 例子,我把它放在这里

  ApiMaps.showCoordinatesOnMap(new Position((int)(-84.41949*100000.0),(int)(33.7455*100000.0)),1000,0); 
  //LONGITUDE first!!
  //and multiply on 100 000

// https://developers.sygic.com/reference/java3d/html/classcom_1_1sygic_1_1sdk_1_1remoteapi_1_1_api_maps.html

ps这是独立的apk

于 2017-02-25T10:10:09.187 回答