| | |
| | | var streetNumber:String? = null |
| | | // 处于该门牌号的方向 |
| | | var direction:String? = null |
| | | // 处于该门牌号的方向距离 |
| | | var distance: String? = null |
| | | // 所处最近交叉路口的方向和距离 |
| | | var roadinter:String? = null |
| | | // 所处最近交叉路口的距离 |
| | | var distance2: String? = null |
| | | |
| | | // 污染范围扇形区域(经纬度多边形) |
| | | var polygon: List<Pair<Double, Double>>? = null |
| | |
| | | this.street = address.street |
| | | this.streetNumber = address.streetNumber |
| | | this.direction = address.direction |
| | | this.distance = address.distance |
| | | this.roadinter = address.roadinter |
| | | this.distance2 = address.distance2 |
| | | Thread.sleep(100) |
| | | } catch (e: Exception) { |
| | | e.printStackTrace() |