Validation Latitude & Longtitude
What this package does? 🤔
Tiny package for validating latitude & longitude string format.
/* example */const isValidStrings = "40.6892" "74.0445";validationLatitudeLongitude; // true 🗽
Results 🙋
- Valid Latitude and/or Longitude returns
true
. - Invalid returns
false
.
Size 🔬
Less-than < 1.5 kilobytes
OK! Lets Get Started 💥
Npm or Yarn installion
npm install validation-latitude-longitude yarn add validation-latitude-longitude
Import Module 📦
;
Methods ⚙️
/* Valid Latitude Format? */validationLatitudeLongitude; /* Valid Longitude Format? */validationLatitudeLongitude; /* Valid Latitude & Longitude Formats? */validationLatitudeLongitude;
The End 🏝️

We could use your help! Please share your experience & code if you got a solution 🛠️to a unique problem 🚀. The community needs your support! ❤️
Working with npm packages
*** New package
- Setup an npm account. (if not done aleardy)
- Create a
package.json
(snippet below) at application root and set version1.0.0
to start. *** If open source, set the license toMIT
. 🤟 - Push changes to your git repo.
npm login
npm publish
*** update package
- Push changes to your git repo
npm login
npm version
with new numbernpm publish
# updating version example npm verison 1.0.1
*** am i still logged in?
npm whoami