我正在开发 android 谷歌地图服务。我已经用 android sdk manager 安装了 google play 服务,但我仍然没有那个 latlng 类。有没有人知道如何纠正它...
问问题
64 次
2 回答
0
确保您在物理设备上运行 android 项目,因为模拟器不支持谷歌地图。
于 2013-07-06T07:01:53.863 回答
0
转到 Windows-> Android SDK 管理器
在 extras 中安装 google play 服务库。
它将存储在 /android-sdk/extras/libproject/googleplayservices
在你的日食中添加它
然后在你的项目中
转到属性-> Android-> 添加该库
它会起作用的。
谷歌地图通用;
标记 myMarkerOne;
gm = ((SupportMapFragment)(getSupportFragmentManager().findFragmentById(R.id.map))).getMap(); gm.setMapType(GoogleMap.MAP_TYPE_NORMAL);
LatLng one = new LatLng(12.786608, 80.221916);//LatLng点数加多点
myMarkerOne = gm.addMarker(new MarkerOptions()
.position(one)
.title("Lotus Pond Chennai")
.snippet("Flats")
.icon(BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.HUE_GREEN)));
像这样给它会起作用的。
于 2013-07-06T07:27:18.023 回答