I am using geolocation api in angularjs .like this example: http://jsfiddle.net/LyD4Q/4/
<div ng-app>
<div ng-controller="GeoTestCtrl">
<div ng-hide="supportsGeo">
Your browser doesn't support geolocation
</div>
<div ng-show="supportsGeo">
Manual digest when position received: <input type="checkbox" ng-model="manualDigest"/>
<br/>
<button ng-click="doTest1()">
Geo Location Test 1: window.navigator.geolocation
</button>
Need to type something to trigger digest:
<input type="text" ng-model="something"/>
<hr/>
Position: <button ng-click="position=null">clear</button>
<pre ng-bind="position|json"/>
<pre ng-bind="zipcode|json"/>
</div>
</div>
</div>
<hr/>
function GeoTestCtrl($scope, $window) {
$scope.supportsGeo = $window.navigator;
$scope.position = null;
$scope.doTest1 = function() {
window.navigator.geolocation.getCurrentPosition(function(position) {
$scope.$apply(function() {
$scope.position = position;
});
}, function(error) {
alert(error);
});
};
}
But I am trying to get zip code by using this. I tried with 'position.address.postalCode' but it is not working for me. Please help me about this.
Thanks for you help....:) I solved it. here is the code:
var lat = position.coords.latitude;
var long = position.coords.longitude;
var latlng = new google.maps.LatLng(lat, long)
geocoder.geocode({'latLng': latlng}, function(results, status) {
$scope.$apply( function () {
if (status == google.maps.GeocoderStatus.OK) {
if (results[0]) {
for(var i=0; i<results[0].address_components.length; i++)
{
var postalCode = results[0].address_components[i].types;
}
}