air-thai-api
v1.0.1
Published
Find PM2.5 around us
Readme
AIR THAI
Check the weather based on location, specify location values with latitude and longitude.
Preparation
node version above 10Installation
npm install air-thai-apiUsage
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 })
