Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 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. lat: lat,
  10. lng: lng
  11. }).then(res => {
  12. console.log(res);
  13. });
  14. });
  15. }
  16. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement