Initial commit

This commit is contained in:
meusinfirmary
2025-04-22 14:31:37 +07:00
commit b7e852126c
115 changed files with 23188 additions and 0 deletions

22
config/request.js Normal file
View File

@ -0,0 +1,22 @@
const request = {
osm_reverse_geo: {
urlBase: 'https://nominatim.openstreetmap.org',
urlPath: 'reverse',
urlFull: 'https://nominatim.openstreetmap.org/reverse',
method: 'GET',
data: {
format: 'geojson' // xml,json,jsonv2,geojson(prefer),geocodejson
},
},
kodepos_region: {
urlBase: 'https://kodepos.vercel.app',
urlPath: 'search',
urlFull: 'https://kodepos.vercel.app/search',
method: 'GET',
data: {
json: 'true'
},
},
};
module.exports = request;