Skip to content

Monaliza14xx/prediction_address_lao

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

prediction_address_lao

prediction_address_lao is a Node.js package that offers predictions for location information in Laos, specifically provinces, districts, and villages.

Installation

To use this package in your Node.js project, you can install it via npm:

npm install prediction_address_lao

Usage

const findNearestPoint = require("prediction_address_lao");
const inputCoordinates = [102.54303379, 17.99857509]; // Replace with your coordinates

// Call the function with your input coordinates
findNearestPoint(inputCoordinates)
  .then((nearestPoint) => {
    // Log the result
    console.log("Nearest Point Properties:");
    for (const key in nearestPoint) {
      console.log(`${key}: ${nearestPoint[key]}`);
    }
  })
  .catch((error) => {
    console.error("Error:", error.message);
  });


About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published