Open gregmazur opened 8 years ago
When using with AngularJS shows a NullPointerException at 116 geolib.js
// TODO: check if point is an object if(typeof point != 'object' ) {
changed to " if(typeof point != 'object' || point == null) {" and it works just fine
You could filter out the objects with missing lat/lng from the array/object beforehand.
When using with AngularJS shows a NullPointerException at 116 geolib.js
changed to " if(typeof point != 'object' || point == null) {" and it works just fine