百度地图调用API地址:http://api.map.baidu.com/lbsapi/creatmap/index.html
1.设置定位中心:直接搜索你要找的位置即可。
调用百度地亏此图代码
2.设置地图:设置地图样式,如大小,显示,功能等。
3.添加标注:添加你要标注的地方,自定义坐标位置
4.获取代码:点蔽纯击获取代码即可,在你要插入百度地图的地方出入百度地图代码
只要插入<!--引用百度地图API-->部分的代码就行。
//定义Maker坐标点LatLng point = new LatLng(39.963175, 116.400244)
/清谨/构建Marker图标
BitmapDescriptor bitmap = BitmapDescriptorFactory
.fromResource(R.drawable.icon_marka)
//构建答晌基MarkerOption,用于在地图上添加Marker
OverlayOptions option = new MarkerOptions()
.position(point)
.icon(bitmap)
//在地图谨简上添加Marker,并显示
mBaiduMap.addOverlay(option)
//获取经纬度double latitude = latLng.latitude
double longitude = latLng.longitude
System.out.println("latitude=" + latitude + ",longitude=" + longitude)
//先闷樱笑清除图层
mBaiduMap.clear()
// 定义Maker坐标点
LatLng point = new LatLng(latitude, longitude)
//颂埋 构建MarkerOption,用于在地图上添加Marker
MarkerOptions options = new MarkerOptions().position(point)
.icon(bitmap)
// 在地图上添加Marker,并显示
mBaiduMap.addOverlay(options)
// 在地图上添蚂含加Marker数组,并显示
//mBaiduMap.addOverlays(overlayOptionses)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)