app.js 2.66 KB
var express = require('express');
var app = express();
var router = require('./router/router')(app); // 라우터 모듈인 router.js를 불러와서 app에 전달

app.set('views',__dirname+'/views');
app.set('view engine', 'ejs');
app.engine('html',require('ejs').renderFile);

var server = app.listen(10022, function() {
  console.log("Express server has started on port 10022")
})


/*
// set environment variables
//export GOOGLE_PLACES_API_KEY = "AIzaSyAFbdNtVeHHzP0RYu9efx6QLCgbMK1dzP0"
//export GOOGLE_PLACES_OUTPUT_FORMAT = "json"

// var assert = require("assert");


const googleMapsClient = require('@google/maps').createClient({
  key: 'AIzaSyAFbdNtVeHHzP0RYu9efx6QLCgbMK1dzP0'
});

// Geocode an address.
googleMapsClient.geocode({
  address: '1600 Amphitheatre Parkway, Mountain View, CA'
}, function(err, response) {
  if (!err) {
    console.log(response.json.results);
  }
});


// google place api 연동
// exports.apiKey = process.env.GOOGLE_PLACES_API_KEY;
// exports.outputFormat = process.env.GOOGLE_PLACES_OUTPUT_FORMAT


function ipLookUp () {
  $.ajax('http://ip-api.com/json')
  .then(
      function success(response) {
          console.log('User\'s Location Data is ', response);
          console.log('User\'s Country', response.country);
          getAdress(response.lat, response.lon)
},

      function fail(data, status) {
          console.log('Request failed.  Returned status of',
                      status);
      }
  );
}

function getAddress (latitude, longitude) {
  $.ajax('https://maps.googleapis.com/maps/api/geocode/json?' +
          'latlng=' + latitude + ',' + longitude + '&key=' + 
          AIzaSyAFbdNtVeHHzP0RYu9efx6QLCgbMK1dzP0)
  .then(
    function success (response) {
      console.log('User\'s Address Data is ', response)
    },
    function fail (status) {
      console.log('Request failed.  Returned status of',
                  status)
    }
   )
}

if ("geolocation" in navigator) {
  // check if geolocation is supported/enabled on current browser
  navigator.geolocation.getCurrentPosition(
   function success(position) {
     // for when getting location is a success
     console.log('latitude', position.coords.latitude, 
                 'longitude', position.coords.longitude);
     getAddress(position.coords.latitude, 
                position.coords.longitude)
   },
  function error(error_message) {
    // for when getting location results in an error
    console.error('An error has occured while retrieving' +
                  'location', error_message)
    ipLookUp()
  });
}
else {
  // geolocation is not supported
  // get your location some other way
  console.log('geolocation is not enabled on this browser')
  ipLookUp()
}
*/