iClient旅行商分析模拟物资配送

2024-02-25 09:18

本文主要是介绍iClient旅行商分析模拟物资配送,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

作者:lly

背景

在特殊时期,需要根据情况对交通进行管控,实行某些道路区域禁止通行的措施,在这中情况下,需要根据具体禁行情况进行物资配送的规划,所以我们使用iClient旅行商分析,来进行物资配送的模拟。

一、构建显示图层

分别构建禁行点,配送中心,目的点图层和数组

    var resultLayer = L.featureGroup().addTo(map);var StopLayer = L.featureGroup().addTo(map);var CenterLayer = L.featureGroup().addTo(map);var targetLayer = L.featureGroup().addTo(map);var centerPoint=[];var targetPoint=[];var stopPoint=[];

二、站点添加

监听鼠标事件,添加各点

function addStop(){StopLayer.clearLayers();map.off('click');stopPoint=[];map.on('click', function(e) {L.circleMarker([e.latlng.lat, e.latlng.lng], {color: 'red'}).addTo(StopLayer);stopPoint.push(L.latLng(e.latlng.lat, e.latlng.lng));});}function addTarget(){targetLayer.clearLayers();map.off('click');targetPoint=[];map.on('click', function(e) {L.marker([e.latlng.lat, e.latlng.lng]).addTo(targetLayer);targetPoint.push(L.latLng(e.latlng.lat, e.latlng.lng));});}function addCenter(){CenterLayer.clearLayers();map.off('click');centerPoint=[];map.on('click', function(e) {L.marker([e.latlng.lat, e.latlng.lng],{icon: myIcon}).addTo(CenterLayer);centerPoint.push(L.latLng(e.latlng.lat, e.latlng.lng));});}

三、旅行商分析

判断传入点是否存在

 if(centerPoint.length==0){alert("请添加配送中心");return;}else if(targetPoint.length==0){alert("请添加配送目的地");return;}

创建分析实例

 findMTSPPathsService = L.supermap.networkAnalystService(serviceUrl);//创建多旅行商分析参数实例resultSetting = new SuperMap.TransportationAnalystResultSetting({returnEdgeFeatures: true,returnEdgeGeometry: true,returnEdgeIDs: true,returnNodeFeatures: true,returnNodeGeometry: true,returnNodeIDs: true,returnPathGuides: true,returnRoutes: true});analystParameter = new SuperMap.TransportationAnalystParameter({resultSetting: resultSetting,weightFieldName: "length",barrierPoints:stopPoint});findMTSPPathsParameter = new SuperMap.FindMTSPPathsParameters({centers:centerPoint,isAnalyzeById: false,nodes: targetPoint,hasLeastTotalCost: true,parameter: analystParameter});

进行路线查找

 findMTSPPathsService.findMTSPPaths(findMTSPPathsParameter, function (serviceResult) {var result = serviceResult.result;result.pathList.map(function (result) {L.geoJSON(result.route, {color: "green"}).addTo(resultLayer);});});

四、结果展示

.在这里插入图片描述
完整代码如下:


<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title data-i18n="resources.title_findMTSPPathsServiceLogistics"></title>
<script type="text/javascript" src="../js/include-web.js"></script>
</head>
<body style=" margin: 0;overflow: hidden;background: #fff;width: 100%;height:100%;position: absolute;top: 0;"><button onclick="addStop()">防控禁行点</button><button onclick="addCenter()">添加配送中心</button><button onclick="addTarget()">添加目的点</button><button onclick="findMTSPPathsProcess()">模拟配送</button>
<div id="map" style="margin:0 auto;width: 100%;height: 100%"></div>
<script type="text/javascript" src="../../dist/leaflet/include-leaflet.js"></script>
<script type="text/javascript">var host = window.isLocal ? window.server : "https://iserver.supermap.io";var map, findMTSPPathsService, resultSetting, analystParameter, findMTSPPathsParameter,url="http://localhost:8090/iserver/services/data-changchun/rest/data",baseUrl = host + "/iserver/services/map-changchun/rest/maps/长春市区图",serviceUrl = host + "/iserver/services/transportationanalyst-sample/rest/networkanalyst/RoadNet@Changchun";map = L.map('map', {crs: L.CRS.NonEarthCRS({bounds: L.bounds([48.4, -7668.25], [8958.85, -55.58]),origin: L.point(48.4, -55.58)}),center: [-3600, 4700],maxZoom: 18,zoom: 6});L.supermap.tiledMapLayer(baseUrl, {noWrap: true}).addTo(map);var resultLayer = L.featureGroup().addTo(map);var StopLayer = L.featureGroup().addTo(map);var CenterLayer = L.featureGroup().addTo(map);var targetLayer = L.featureGroup().addTo(map);var myIcon = L.icon({iconUrl: '../img/marker.png',iconSize: [44, 30]});var centerPoint=[];var targetPoint=[];var stopPoint=[];function findMTSPPathsProcess() {resultLayer.clearLayers();if(centerPoint.length==0){alert("请添加配送中心");return;}else if(targetPoint.length==0){alert("请添加配送目的地");return;}//创建多旅行商分析服务实例findMTSPPathsService = L.supermap.networkAnalystService(serviceUrl);//创建多旅行商分析参数实例resultSetting = new SuperMap.TransportationAnalystResultSetting({returnEdgeFeatures: true,returnEdgeGeometry: true,returnEdgeIDs: true,returnNodeFeatures: true,returnNodeGeometry: true,returnNodeIDs: true,returnPathGuides: true,returnRoutes: true});analystParameter = new SuperMap.TransportationAnalystParameter({resultSetting: resultSetting,weightFieldName: "length",barrierPoints:stopPoint});findMTSPPathsParameter = new SuperMap.FindMTSPPathsParameters({centers:centerPoint,isAnalyzeById: false,nodes: targetPoint,hasLeastTotalCost: true,parameter: analystParameter});//进行查找findMTSPPathsService.findMTSPPaths(findMTSPPathsParameter, function (serviceResult) {var result = serviceResult.result;result.pathList.map(function (result) {L.geoJSON(result.route, {color: "green"}).addTo(resultLayer);});});}function addStop(){StopLayer.clearLayers();map.off('click');stopPoint=[];map.on('click', function(e) {L.circleMarker([e.latlng.lat, e.latlng.lng], {color: 'red'}).addTo(StopLayer);stopPoint.push(L.latLng(e.latlng.lat, e.latlng.lng));});}function addTarget(){targetLayer.clearLayers();map.off('click');targetPoint=[];map.on('click', function(e) {L.marker([e.latlng.lat, e.latlng.lng]).addTo(targetLayer);targetPoint.push(L.latLng(e.latlng.lat, e.latlng.lng));});}function addCenter(){CenterLayer.clearLayers();map.off('click');centerPoint=[];map.on('click', function(e) {L.marker([e.latlng.lat, e.latlng.lng],{icon: myIcon}).addTo(CenterLayer);centerPoint.push(L.latLng(e.latlng.lat, e.latlng.lng));});}
</script>
</body>
</html>

这篇关于iClient旅行商分析模拟物资配送的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/745046

相关文章

Go标准库常见错误分析和解决办法

《Go标准库常见错误分析和解决办法》Go语言的标准库为开发者提供了丰富且高效的工具,涵盖了从网络编程到文件操作等各个方面,然而,标准库虽好,使用不当却可能适得其反,正所谓工欲善其事,必先利其器,本文将... 目录1. 使用了错误的time.Duration2. time.After导致的内存泄漏3. jsO

Spring事务中@Transactional注解不生效的原因分析与解决

《Spring事务中@Transactional注解不生效的原因分析与解决》在Spring框架中,@Transactional注解是管理数据库事务的核心方式,本文将深入分析事务自调用的底层原理,解释为... 目录1. 引言2. 事务自调用问题重现2.1 示例代码2.2 问题现象3. 为什么事务自调用会失效3

找不到Anaconda prompt终端的原因分析及解决方案

《找不到Anacondaprompt终端的原因分析及解决方案》因为anaconda还没有初始化,在安装anaconda的过程中,有一行是否要添加anaconda到菜单目录中,由于没有勾选,导致没有菜... 目录问题原因问http://www.chinasem.cn题解决安装了 Anaconda 却找不到 An

Spring定时任务只执行一次的原因分析与解决方案

《Spring定时任务只执行一次的原因分析与解决方案》在使用Spring的@Scheduled定时任务时,你是否遇到过任务只执行一次,后续不再触发的情况?这种情况可能由多种原因导致,如未启用调度、线程... 目录1. 问题背景2. Spring定时任务的基本用法3. 为什么定时任务只执行一次?3.1 未启用

C++ 各种map特点对比分析

《C++各种map特点对比分析》文章比较了C++中不同类型的map(如std::map,std::unordered_map,std::multimap,std::unordered_multima... 目录特点比较C++ 示例代码 ​​​​​​代码解释特点比较1. std::map底层实现:基于红黑

Spring、Spring Boot、Spring Cloud 的区别与联系分析

《Spring、SpringBoot、SpringCloud的区别与联系分析》Spring、SpringBoot和SpringCloud是Java开发中常用的框架,分别针对企业级应用开发、快速开... 目录1. Spring 框架2. Spring Boot3. Spring Cloud总结1. Sprin

Spring 中 BeanFactoryPostProcessor 的作用和示例源码分析

《Spring中BeanFactoryPostProcessor的作用和示例源码分析》Spring的BeanFactoryPostProcessor是容器初始化的扩展接口,允许在Bean实例化前... 目录一、概览1. 核心定位2. 核心功能详解3. 关键特性二、Spring 内置的 BeanFactory

MyBatis-Plus中Service接口的lambdaUpdate用法及实例分析

《MyBatis-Plus中Service接口的lambdaUpdate用法及实例分析》本文将详细讲解MyBatis-Plus中的lambdaUpdate用法,并提供丰富的案例来帮助读者更好地理解和应... 目录深入探索MyBATis-Plus中Service接口的lambdaUpdate用法及示例案例背景

MyBatis-Plus中静态工具Db的多种用法及实例分析

《MyBatis-Plus中静态工具Db的多种用法及实例分析》本文将详细讲解MyBatis-Plus中静态工具Db的各种用法,并结合具体案例进行演示和说明,具有很好的参考价值,希望对大家有所帮助,如有... 目录MyBATis-Plus中静态工具Db的多种用法及实例案例背景使用静态工具Db进行数据库操作插入

CSS模拟 html 的 title 属性(鼠标悬浮显示提示文字效果)

《CSS模拟html的title属性(鼠标悬浮显示提示文字效果)》:本文主要介绍了如何使用CSS模拟HTML的title属性,通过鼠标悬浮显示提示文字效果,通过设置`.tipBox`和`.tipBox.tipContent`的样式,实现了提示内容的隐藏和显示,详细内容请阅读本文,希望能对你有所帮助... 效