air-thai-api
v1.0.1
Published
Find PM2.5 around us
Downloads
83
Readme
AIR THAI
Check the weather based on location, specify location values with latitude and longitude.
Preparation
node version above 10
Installation
npm install air-thai-api
Usage
import * as AirThai from "air-thai-api"
interface input = {
lat: number
long: number
}
const location:input = {
lat: 14.026564760517724,
long: 100.61505110969684
}
AirThai(location).then((data) => {
console.log('data', data)
})
const { AirThai } = require("air-thai-api")
const result = await AirThai({ lat: 13.670809600000002, long: 100.6501888 })