对以下代码片段的准确描述是()
wx.getLocation({
type:'gcj02',//返回可以用于wx.openLocation的经纬度
success(res){
constlatitude=res.latitude
constlongitude=res.longitude
wx.openLocation({
latitude,
longitude,
scale:18
})
}
})
wx.getLocation({
type:'gcj02',//返回可以用于wx.openLocation的经纬度
success(res){
constlatitude=res.latitude
constlongitude=res.longitude
wx.openLocation({
latitude,
longitude,
scale:18
})
}
})
举一反三
- 对以下代码片段的准确描述是( ) wx.getLocation({ type: 'gcj02', //返回可以用于wx.openLocation的经纬度 success (res) { const latitude = res.latitude const longitude = res.longitude wx.openLocation({ latitude, longitude, scale: 18 }) } })
- 中国大学MOOC: 对以下代码片段的准确描述是()wx.getLocation({ type: wgs84, success (res) { const latitude = res.latitude const longitude = res.longitude const speed = res.speed const accuracy = res.accuracy } })
- 中国大学MOOC:对以下代码片段的准确描述是()wx.getLocation({type:wgs84,success(res){constlatitude=res.latitudeconstlongitude=res.longitudeconstspeed=res.speedconstaccuracy=res.accuracy}})
- 以下( )属性可以表示地图的纬度。 A: longitude B: latitude C: scale D: markers
- map组件的( )属性用于设置地图中心的纬度。 A: latitude B: longitude C: markers D: scale