如何自定义路由类以将channel参数附加到路线API调用?

时间:2019-06-24 20:33:39

标签: android google-maps google-api google-maps-android-api-2

我一直未能成功尝试对Routing类进行子类化,以将channel参数添加到ConstructURL()创建的URL中。似乎路由没有默认构造函数可在子类中访问。我了解Mobile Maps SDK并不正式支持频道,但是有没有可能的解决方法?

非常感谢您的帮助!

public RoutingTest(Builder builder) {
    //Compiler error - No default constructors avail in Routing
}

@Override
protected String constructURL() {
    //Adding the channel parameter to the call 
    return super.constructURL();
}

public static class Builder extends Routing.Builder {
     ........
} 

0 个答案:

没有答案