Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. $( document ).ready(function() {
  2. if (navigator.geolocation) {
  3. navigator.geolocation.getCurrentPosition(function (position) {
  4. console.log(position);
  5. var lat = position.coords.latitude;
  6. var lng = position.coords.longitude;
  7.  
  8. axios.get('/nightx/weather', {
  9. params: {
  10. lat: lat,
  11. lng: lng
  12. }
  13. }).then(res => {
  14. console.log(res);
  15. });
  16. });
  17. }
  18. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement