old_mini_map.js 672 B

1234567891011121314151617181920212223242526272829303132
  1. const config = require("../config")
  2. module.exports = {
  3. treePoint: {
  4. url: config.base_dev_url + "lz_tree/listByPoint",
  5. type: "post",
  6. },
  7. location: {
  8. url: "/ws/geocoder/v1",
  9. type: "get"
  10. },
  11. getAltitude: {
  12. url: "/v3/elevation/point",
  13. type: "get"
  14. },
  15. search: {
  16. url: "/ws/place/v1/suggestion",
  17. type: "get"
  18. },
  19. division: {
  20. url: "/ws/district/v1/list",
  21. type: "get"
  22. },
  23. getCtiyList: {
  24. url: config.base_dev_url + "poi/city",
  25. type: "get",
  26. },
  27. get7d: {
  28. url: config.base_dev_url + "lz_weather7d/get7d",
  29. type: "get",
  30. },
  31. }