安卓打包后,定位无法获取地名,只能获取到经纬度。但是调试时是可以获取地名的。以下是代码:
function onPlusReady() {
alert('plusready...')
plus.geolocation.getCurrentPosition( function ( p ) {
console.log('succ->'+p.address.street)
}, function ( e ) {
alert( "Geolocation error: " + e.message );
} );
}
0 个回复