method Datastore.isGeoPoint Datastore.isGeoPoint(value?: { }): boolean Helper function to check if something is a Datastore Geo Point object. Examples Example 1 const {Datastore} = require('@google-cloud/datastore'); const datastore = new Datastore(); const coordinates = { latitude: 0, longitude: 0 }; datastore.isGeoPoint(coordinates); // false datastore.isGeoPoint(datastore.geoPoint(coordinates)); // true Parameters optional value: { } Return Type boolean