Functions
pointNG has several functions that make building location based web personalization's easy and user-friendly. Get familiar with these function on this page.
1. Geolocation API method
pointng.getLocation()
.then(function(prediction) {
console.log(prediction)
//Do your magic here with the predictions
}) 2. Reverse Geocoding method
pointng.latLonLocate(62.2443, 34.35435)
.then(function(prediction) {
console.log(prediction)
//Do your magic here with the predictions
}) 3. pointNG widget

Last updated