| 12345678910111213141516171819202122232425262728293031323334 |
- import 'package:amap_location/generated/json/base/json_convert_content.dart';
- class LocationResultEntity with JsonConvert<LocationResultEntity> {
- int altitude;
- int speed;
- int bearing;
- String citycode;
- String adcode;
- String country;
- String province;
- String city;
- String district;
- String road;
- String street;
- String number;
- String poiname;
- int errorCode;
- String errorInfo;
- int locationType;
- String locationDetail;
- String aoiname;
- String address;
- String poiid;
- String floor;
- String description;
- int time;
- String provider;
- double lon;
- double lat;
- int accuracy;
- bool isOffset;
- bool isFixLastLocation;
- String coordType;
- }
|