我正在将我现有的Google地图代码(大部分是在Android Studio中选择“Google Maps Activity”时生成)转换为Android-Maps-Extensions库,以便同时使用Marker Clustering这个库和使用Android-Map-Extensions开发的重叠标记Spiderfier工具。
现在,我对这个方法有问题(我把它做得比实际现有的方法小,以便更容易阅读,所以如果有任何错误,请告诉我,我会编辑它):
private void setUpMapIfNeeded() {
// Do a null check to confirm that we have not already instantiated the map.
if (mMap == null) {
// Try to obtain the map from the SupportMapFragment.
mMap = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map))
.getMap(); //ERROR IS HERE
// Check if we were successful in obtaining the map.
if (mMap != null) {
setUpMap();
}
}
}
基本上就行:
mMap = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map)).getMap();
正在生成一条消息
Incompatible Types:
Required: com.androidmapsextensions.GoogleMap
Found: com.google.android.gms.maps.GoogleMap
以下是我的导入声明(我包括所有这些以防万一,包括目前已注释掉的声明):
import android.content.Intent;
import android.net.Uri;
import android.support.v4.app.FragmentActivity;
import android.os.Bundle;
import android.text.Html;
import android.text.Spanned;
import android.util.Log;
import android.view.View;
import android.widget.TextView;
import com.google.android.gms.maps.CameraUpdateFactory;
import com.androidmapsextensions.*;
//import com.google.android.gms.maps.GoogleMap;
//import com.google.android.gms.maps.SupportMapFragment;
import com.google.android.gms.maps.model.LatLng;
//import com.google.android.gms.maps.model.Marker;
//import com.google.android.gms.maps.model.MarkerOptions;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
我将android:name从“android:name =”com.google.android.gms.maps.SupportMapFragment“更改为activity_maps.xml中的”com.androidmapsextensions.SupportMapFragment“,如下所示:
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent" android:id="@+id/map" tools:context=".MapsActivity"
android:name="com.androidmapsextensions.SupportMapFragment" />
此外,这些是我的Gradle文件中的依赖项:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:21.0.3'
compile 'com.google.android.gms:play-services:6.5.87'
compile 'com.androidmapsextensions:android-maps-extensions:2.0.0'
}
虽然仍然收到相同的错误消息。有什么我忘记改变或需要添加的东西吗?
如果您想了解更多信息,请在下面留言,我将回复或编辑此帖。
答案 0 :(得分:0)
您必须使用getExtendedMap
代替getMap
(或getExtendedMapAsync
)Migration from Android API v2中所述。
请注意,在演示应用程序中调用它的去聚类或重叠标记Spiderfier并非生产就绪,您必须对其进行调整,因此它不会崩溃。
完全披露:我是Android Maps Extensions开发者。