location_result_entity.dart 677 B

12345678910111213141516171819202122232425262728293031323334
  1. import 'package:amap_location/generated/json/base/json_convert_content.dart';
  2. class LocationResultEntity with JsonConvert<LocationResultEntity> {
  3. int altitude;
  4. int speed;
  5. int bearing;
  6. String citycode;
  7. String adcode;
  8. String country;
  9. String province;
  10. String city;
  11. String district;
  12. String road;
  13. String street;
  14. String number;
  15. String poiname;
  16. int errorCode;
  17. String errorInfo;
  18. int locationType;
  19. String locationDetail;
  20. String aoiname;
  21. String address;
  22. String poiid;
  23. String floor;
  24. String description;
  25. int time;
  26. String provider;
  27. double lon;
  28. double lat;
  29. int accuracy;
  30. bool isOffset;
  31. bool isFixLastLocation;
  32. String coordType;
  33. }