whereGeoPoint method

GeoPointBuilder whereGeoPoint(
  1. String key,
  2. BmobGeoPoint center
)

位置信息字段查询

Implementation

GeoPointBuilder whereGeoPoint(String key, BmobGeoPoint center) {
  if (!_whereGeoPoint.containsKey(key)) {
    _whereGeoPoint[key] = GeoPointBuilder._(center);
  }
  return _whereGeoPoint[key];
}