
基于地图实现的车位智慧推荐系统APP,系统基于安卓架构开发实现手机端地图导航并指导用户停车的功能。程序主要包含停车位检索,停车位推荐,地图导航,我的停车,个人信息等功能模块,系统集成高德地图实现实际场景中停车位信息的检索,
并在地图中对用户停车路线进行导航。
原文地址
本次基于地图实现的车位智慧推荐系统APP,主要内容涉及:
主要功能模块:停车位检索,停车位推荐,地图导航,我的停车,个人信息等等
主要包含技术:java,安卓,高德地图,html,javascript
主要包含算法:数据分析计算等




其他效果省略
public PageUtils queryPage(Map<String, Object> params) {
String beanName = (String) params.get("paramKey"); String uid = (String) params.get("uid"); String orderField = "ct"; boolean isAcs = false; Page<CaseInfoEntity> page = this.selectPage( new Query<CaseInfoEntity>(params).getPage(), new EntityWrapper<CaseInfoEntity>() .eq(StringUtils.isNotBlank(uid) && !"null".equalsIgnoreCase(uid), "uid", uid) .like(StringUtils.isNotBlank(beanName), "pname", beanName) .orderBy(orderField, isAcs) .addFilterIfNeed(params.get(Constant.SQL_FILTER) != null, (String) params.get(Constant.SQL_FILTER)) ); if (StringUtils.isNotEmpty(beanName)) { page.getRecords().stream().forEach(item -> { item.setPname(item.getPname().replace(beanName, "<span style='color: #ef0000'>" + beanName + "</span>")); }); } return new PageUtils(page);}@Overridepublic void save(CaseInfoEntity book) { book.setCt(new Date()); book.setUt(new Date()); this.insert(book);}@Overridepublic void update(CaseInfoEntity scheduleJob) { this.updateById(scheduleJob);}@Overridepublic void deleteBatch(String[] jobIds) { Arrays.stream(jobIds).forEach(pid -> this.delete(new EntityWrapper<CaseInfoEntity>().eq("pid", pid)));}@Overridepublic int updateBatch(String[] jobIds, int status) { return this.updateBatch(jobIds, status);}本文系转载,前往查看
如有侵权,请联系 cloudcommunity@tencent.com 删除。
本文系转载,前往查看
如有侵权,请联系 cloudcommunity@tencent.com 删除。