Get coordinates of current location in angular

后端 未结 2 1210
忘掉有多难
忘掉有多难 2021-02-19 10:42

I created the following function in a service, to get the coordinates of the current location and store them in 2 variables:

  getCurrentLocation() {
    if (nav         


        
2条回答
  •  太阳男子
    2021-02-19 11:28

    Just in case if you want continually request the position, then use

    navigator.geolocation.watchPosition(res => ...
    

提交回复
热议问题