我正在尝试在Android地图上绘制折线。我已经阅读了其他堆栈溢出答案,他们没有纠正我的问题。我肯定已将谷歌播放服务添加到我的应用程序作为依赖。
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "com.example.mattboyle.windowrunner"
minSdkVersion 21
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
//apply plugin: 'android-unit-test'
//afterEvaluate {
// tasks.findByName("assembleDebug").dependsOn("testDebugClasses")
//}
dependencies {
// compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.beardedhen:androidbootstrap:+'
compile 'com.google.android.gms:play-services:6.5.87'
compile 'com.telly:groundy:1.5'
compile 'com.telly:groundy-compiler:1.5'
}
这是我非常简单的代码:
System.out.println("About to add to polyoptions");
PolylineOptions routeOption = new PolylineOptions().addAll(RunningMap.routeToPlot);
System.out.println("Added them all and routeoptions is of size "+routeOption.getPoints().size());
Polyline polyline = map.addPolyline(routeOption);
System.out.println("Should have plotted now..");
它击中所有系统输出。
PolylineOptions.size()返回102并且似乎没有任何其他错误。
Map已正确初始化,我可以在Android屏幕上看到它。
map = ((MapFragment) getFragmentManager().findFragmentById(R.id.map))
.getMap();
这似乎应该有效,我无法理解它为什么不行。我真的很感激任何建议。
答案 0 :(得分:0)
在Google的PolyLine Options官方文档中,没有像size()这样的方法。这可能是您获得错误的可能原因。请参阅文档以了解支持的方法。
希望这会有所帮助!!