在Cloud Function Firebase中创建GeoHash(用于GeoFire)

时间:2018-10-20 01:57:10

标签: javascript firebase geolocation geocoding geofire

我需要在Firebase上运行的云函数中为经纬度创建一个Geohash。

我不需要导入什么,什么是最佳实践。

此刻,我的index.js如下:

'use strict';

const _ = require('lodash');
const functions = require('firebase-functions');
const admin = require('firebase-admin');
admin.initializeApp();

exports.gameCreated = functions.database.ref('/games/{gameId}').onCreate((snap, context) => {
    // This is where I need to create the geohash
});

0 个答案:

没有答案