我可以使用下面的代码找到当前位置的时间戳。
navigator.geolocation.getCurrentPosition(function(position){
var timestamp=position.coords.timestamp;
});
但是,可以找到地址或城市的时间戳。我能够找到城市的纬度和经度,但无法找到时间戳。
var geocoder = new google.maps.Geocoder();
geocoder.geocode({ 'address': "chennai" }, function (results, status) {
if (status == google.maps.GeocoderStatus.OK) {
var position= new google.maps.LatLng(results[0].geometry.location.lat(),
results[0].geometry.location.lng())
}
});
如何使用纬度和经度值查找地址的时间戳。
提前致谢