loopback/lib/geo-point.js

18 lines
349 B
JavaScript

/**
* Export the `GeoPoint` class.
*/
module.exports = GeoPoint;
function GeoPoint(data) {
if(!(this instanceof GeoPoint)) {
return new GeoPoint(data);
}
this.lat = data.lat;
this.long = data.long || data.lng;
}
// TODO remove this
// register the type
require('jugglingdb/lib/model-builder').ModelBuilder.registerType(GeoPoint);