如何獲得創建對象之外的經度和緯度? 我已經做了Ext.util.Geolocation的新對象,更新了它,現在我試圖讓緯度和經度值在對象之外,但是它顯示我'null'。 代碼:Sencha Touch 2 Ext.util.Geolocation
var geo = Ext.create('Ext.util.Geolocation', {
autoUpdate: false,
listeners: {
locationupdate: function(geo) {
//alert('New latitude: ' + geo.getLatitude());
},
locationerror: function(geo, bTimeout, bPermissionDenied, bLocationUnavailable, message) {
if(bTimeout){
alert('Timeout occurred.');
} else {
alert('Error occurred.');
}
}
}
});
geo.updateLocation();
//geo.fireEvent('locationupdate');
alert(geo.getLatitude()); // it shows null
在此先感謝。
嘗試使用geo.updateLocation(); – Multitut 2012-10-11 17:35:02