GeoAddress.proto 257 B

1234567891011121314
  1. syntax = "proto3";
  2. message GeoAddress {
  3. string geohash = 1;
  4. double longitude = 2;
  5. double latitude = 3;
  6. string province = 4;
  7. string city = 5;
  8. string district = 6;
  9. string town = 7;
  10. string street = 8;
  11. string streetNumber = 9;
  12. int32 timestamp = 10;
  13. }