为什么我通过百度坐标拾取系统拿到的其他地点的坐标在添加覆盖物的时候就会失败,而用视频中的坐标就没问题呢?例如114.499601, 38.139643
2016-01-11
“setMyLocationConfigeration(MyLocationConfiguration configeration)
设置定位图层配置信息,只有先允许定位图层后设置定位图层配置信息才会生效,参见 setMyLocationEnabled(boolean)。”
以上是百度API原文。所以,需要设置baiduMap.setMyLocationEnabled(true);才能显示当前位置的图标。亲测有效!!!
设置定位图层配置信息,只有先允许定位图层后设置定位图层配置信息才会生效,参见 setMyLocationEnabled(boolean)。”
以上是百度API原文。所以,需要设置baiduMap.setMyLocationEnabled(true);才能显示当前位置的图标。亲测有效!!!
2016-01-03
百度地图API更新了,问题我已解决
// 我用的是最新的API,将上面new出来的TextView的对象tv传入下面的方法中,将tips传入下面的参数中就好了
BitmapDescriptor tips = BitmapDescriptorFactory.fromView(tv);
infoWindow = new InfoWindow(tips, ll, 10, new OnInfoWindowClickListener() {}
// 我用的是最新的API,将上面new出来的TextView的对象tv传入下面的方法中,将tips传入下面的参数中就好了
BitmapDescriptor tips = BitmapDescriptorFactory.fromView(tv);
infoWindow = new InfoWindow(tips, ll, 10, new OnInfoWindowClickListener() {}
2015-11-01
The constructor InfoWindow(TextView, LatLng, int, new InfoWindow.OnInfoWindowClickListener(){}) is undefined
2015-10-29