|
|
|
@ -28,11 +28,11 @@ public class AppletsMapController {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 根据定位经纬度范围行政区数据 |
|
|
|
|
* 查询城市行政区信息 |
|
|
|
|
* |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
@ApiOperation(value = "根据定位经纬度范围行政区数据", notes = "根据定位经纬度范围行政区数据") |
|
|
|
|
@ApiOperation(value = "查询城市行政区信息", notes = "查询城市行政区信息") |
|
|
|
|
@GetMapping("getRegionByLocation") |
|
|
|
|
public R<List<LandLonLatDto>> getRegionByLocation(String city) { |
|
|
|
|
return R.ok(mapService.getRegionByLocation(city), "查询成功"); |
|
|
|
@ -57,52 +57,52 @@ public class AppletsMapController {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 根据定位经纬度返回5公里范围内的大组团小组团 |
|
|
|
|
* 查询城市的大组团和小组团信息 |
|
|
|
|
* |
|
|
|
|
* @param type 组团类型(表名) |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
@ApiOperation(value = "根据定位经纬度返回5公里范围内的大组团小组团", notes = "根据定位经纬度返回5公里范围内的大组团小组团") |
|
|
|
|
@ApiOperation(value = "查询城市的大组团和小组团信息(typ:dazutuan,xiaozutuan)", notes = "查询城市的大组团和小组团信息(typ:dazutuan,xiaozutuan)") |
|
|
|
|
@GetMapping("getTypeRegionByLocation") |
|
|
|
|
public R<List<LandLonLatDto>> getTypeRegionByLocation(@RequestParam String type,String city) { |
|
|
|
|
return R.ok(mapService.getTypeRegionByLocation(type,city), "查询成功"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 根据定位经纬度范围行政区数据 |
|
|
|
|
* 查询城市环线数据 |
|
|
|
|
* |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
@ApiOperation(value = "根据定位经纬度范围行政区数据", notes = "根据定位经纬度范围行政区数据") |
|
|
|
|
@ApiOperation(value = "查询城市环线数据", notes = "查询城市环线数据") |
|
|
|
|
@GetMapping("getLoopLine") |
|
|
|
|
public R<List<LandLonLatDto>> getLoopLine(String city) { |
|
|
|
|
return R.ok(mapService.getLoopLine(city), "查询成功"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 获取拟挂牌地块数据 |
|
|
|
|
* 获取城市拟挂牌地块数据 |
|
|
|
|
* |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
@ApiOperation(value = "获取拟挂牌地块数据", notes = "获取拟挂牌地块数据") |
|
|
|
|
@ApiOperation(value = "获取城市拟挂牌地块数据", notes = "获取城市拟挂牌地块数据") |
|
|
|
|
@GetMapping("getLandToList") |
|
|
|
|
public R<List<LandLonLatDto>> getLandToList(String city) { |
|
|
|
|
return R.ok(mapService.getLandToList(city), "查询成功"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 获取挂牌中数据 |
|
|
|
|
* 根据获取城市挂牌中数据 |
|
|
|
|
* |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
@ApiOperation(value = "获取挂牌中数据", notes = "获取挂牌中数据") |
|
|
|
|
@ApiOperation(value = "根据获取城市挂牌中数据", notes = "根据获取城市挂牌中数据") |
|
|
|
|
@GetMapping("getLandListing") |
|
|
|
|
public R<List<LandLonLatDto>> getLandListing(String city) { |
|
|
|
|
return R.ok(mapService.getLandListing(city), "查询成功"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 获取出让地块数据 |
|
|
|
|
* 根据时间段获取城市出让地块数据 |
|
|
|
|
* |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
@ -118,11 +118,11 @@ public class AppletsMapController {
|
|
|
|
|
* @author peihao |
|
|
|
|
* @date 2021/5/25 |
|
|
|
|
**/ |
|
|
|
|
@ApiOperation(value = "设置行政区,环线,大组团,小组团经纬度", notes = "设置行政区,环线,大组团,小组团经纬度") |
|
|
|
|
/*@ApiOperation(value = "设置行政区,环线,大组团,小组团经纬度", notes = "设置行政区,环线,大组团,小组团经纬度") |
|
|
|
|
@GetMapping(value = "/setGeom/{type}") |
|
|
|
|
public R setGeom(@PathVariable String type) { |
|
|
|
|
return R.ok(mapService.setGeom(type)); |
|
|
|
|
} |
|
|
|
|
}*/ |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|