123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- <!--********************************************************************
- * Copyright© 2000 - 2021 SuperMap Software Co.Ltd. All rights reserved.
- *********************************************************************-->
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title data-i18n="resources.title_routeCalculateMeasure"></title>
- <script type="text/javascript" include="bootstrap-css" src="../js/include-web.js"></script>
- <script type="text/javascript" src="../../dist/ol/include-ol.js"></script>
- <style>
- .ol-popup {
- position: absolute;
- background-color: white;
- -webkit-filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2));
- filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2));
- padding: 15px;
- border-radius: 10px;
- border: 1px solid #cccccc;
- bottom: 12px;
- left: -50px;
- min-width: 300px;
- }
- .ol-popup:after, .ol-popup:before {
- top: 100%;
- border: solid transparent;
- content: " ";
- height: 0;
- width: 0;
- position: absolute;
- pointer-events: none;
- }
- .ol-popup:after {
- border-top-color: white;
- border-width: 10px;
- left: 48px;
- margin-left: -10px;
- }
- .ol-popup:before {
- border-top-color: #cccccc;
- border-width: 11px;
- left: 48px;
- margin-left: -11px;
- }
- </style>
- </head>
- <body style=" margin: 0;overflow: hidden;background: #fff;width: 100%;height:100%; position: absolute;top: 0;">
- <div id="map" style="width: 100%;height:100%"></div>
- <div id="popup" class="ol-popup">
- <div id="popup-content"></div>
- </div>
- <script type="text/javascript">
- var map, options, queryBySQLParams, queryBySQLService, resultLayer,
- routeCalculateMeasureParameters, routeCalculateMeasureService,
- baseUrl = (window.isLocal ? window.server : "https://iserver.supermap.io") + "/iserver/services/map-changchun/rest/maps/长春市区图",
- serviceUrl = (window.isLocal ? window.server : "https://iserver.supermap.io") + "/iserver/services/spatialanalyst-changchun/restjsr/spatialanalyst";
- var container = document.getElementById('popup');
- var content = document.getElementById('popup-content');
- var overlay = new ol.Overlay(({
- element: container,
- autoPan: true,
- autoPanAnimation: {
- duration: 250
- }
- }));
- var extent = [48.4, -7668.25, 8958.85, -55.58];
- var projection = new ol.proj.Projection({
- code:'',
- extent: extent,
- units: 'm'
- });
- var mapService = new ol.supermap.MapService(baseUrl);
- mapService.getMapInfo(function (serviceResult) {
- var mapJSONObj = serviceResult.result;
- map = new ol.Map({
- target: 'map',
- controls: ol.control.defaults({attributionOptions: {collapsed: false}})
- .extend([new ol.supermap.control.Logo()]),
- view: new ol.View({
- center: [4503.62, -3861.91],
- zoom: 2,
- projection: projection,
- multiWorld: true
- }),
- overlays: [overlay]
- });
- options = ol.source.TileSuperMapRest.optionsFromMapJSON(baseUrl, mapJSONObj);
- var layer = new ol.layer.Tile({
- source: new ol.source.TileSuperMapRest(options)
- });
- map.addLayer(layer);
- routeCalculateMeasureProcess();
- });
- function routeCalculateMeasureProcess() {
- //通过SQL查询的方法建立路由,并添加到地图上
- queryBySQLService = new ol.supermap.QueryService(baseUrl);
- queryBySQLParams = new SuperMap.QueryBySQLParameters({
- queryParams: [
- new SuperMap.FilterParameter({
- name: "RouteDT_road@Changchun",
- attributeFilter: "RouteID=1690"
- })
- ]
- });
- queryBySQLService.queryBySQL(queryBySQLParams, function (SQLQueryServiceResult) {
- var queryBySQLResult = SQLQueryServiceResult.result.recordsets[0].features;
- var pathSource = new ol.source.Vector({
- features: (new ol.format.GeoJSON()).readFeatures(queryBySQLResult)
- });
- pathLayer = new ol.layer.Vector({
- source: pathSource,
- style: new ol.style.Style({
- stroke: new ol.style.Stroke({
- color: 'rgba(100, 100, 225, 10)',
- width: 3
- })
- })
- });
- map.addLayer(pathLayer);
- //将形成路由的点提出来,为了构造下面点定里程服务sourceRoute
- var pointsList = [];
- var routeObj = queryBySQLResult.features[0].geometry.coordinates[0];
- for (var i = 0; i < routeObj.length; i++) {
- pointsList.push([routeObj[i][0], routeObj[i][1], routeObj[i][2]])
- }
- var routeLine = new ol.geom.LineString([pointsList]);
- //在组成路由的点中选取一个查询点(数组中第8个点),并添加到地图上
- var point = new ol.geom.Point([routeObj[7][0], routeObj[7][1]]);
- //点定里程服务
- routeCalculateMeasureService = new ol.supermap.SpatialAnalystService(serviceUrl);
- routeCalculateMeasureParameters = new SuperMap.RouteCalculateMeasureParameters({
- "sourceRoute": routeLine, //必选,路由类型
- "point": point, //必选
- "tolerance": 10,
- "isIgnoreGap": false
- });
- routeCalculateMeasureService.routeCalculateMeasure(routeCalculateMeasureParameters, function (routeCaculateServiceResult) {
- var vectorSource = new ol.source.Vector({
- features: [new ol.Feature(point)],
- });
- resultLayer = new ol.layer.Vector({
- source: vectorSource
- });
- map.addLayer(resultLayer);
- var innerHTML = resources.msg_MByQuery + routeCaculateServiceResult.result.measure;
- content.innerHTML = innerHTML;
- overlay.setPosition([point.getCoordinates()[0], point.getCoordinates()[1]]);
- });
- });
- }
- </script>
- </body>
- </html>
|