I am using ng-map google maps angular library and faced a problem when maps doesn't update, when I reload the page in my browser. Also I noticed that browser ask to share my current location and it does not matter if I will agree or not to share location, if I will access the same page next time, maps get updated correctly (without full reload the page)
<div class="col-xs-10" ng-show="hasMap == true">
<map zoom="13" center="{{ location }}">
<marker position="{{ location }}" animation="DROP" icon="blue_marker.png">
</marker>
</map>
</div>