123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- <!--********************************************************************
- * Copyright© 2000 - 2021 SuperMap Software Co.Ltd. All rights reserved.
- *********************************************************************-->
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title data-i18n="resources.title_operatePlottingLayer"></title>
- <script type="text/javascript" exclude="iclient-classic" include="iclient8c-plot" src="../../dist/classic/include-classic.js"></script>
- <style type="text/css">
- body {
- margin: 0;
- overflow: hidden;
- background: #fff;
- width: 100%;
- height: 100%
- }
- #map {
- position: absolute;
- width: 100%;
- height: 100%;
- }
- #toolbar {
- position: absolute;
- top: 50px;
- right: 10px;
- text-align: center;
- z-index: 100;
- border-radius: 4px;
- }
- </style>
- </head>
- <body>
- <div id="toolbar" class="panel panel-primary">
- <div class='panel-heading'>
- <h5 class='panel-title text-center' data-i18n="resources.title_operatePlottingLayer"></h5></div>
- <div class='panel-body content'>
- <input type="button" class="btn btn-default" data-i18n="[value]resources.btn_createLayer" onclick="createLayer()"/>
- <input type="button" class="btn btn-default" data-i18n="[value]resources.btn_deleteLayer" onclick="removeLayer()"/>
- <input type="button" class="btn btn-default" data-i18n="[value]resources.btn_drawMarker" onclick="plotSymbol()"/>
- <input type="button" class="btn btn-default" data-i18n="[value]resources.btn_cancelMarker" onclick="PlottingDrawCancel()"/>
- </div>
- </div>
- <div id="map"></div>
- <script type="text/javascript" include="bootstrap,widgets.alert" src="../js/include-web.js"></script>
- <script>
- var map, baseLayer, drawGraphicObject, plottingEdit, symbolLibManager, plotting, plottingLayers = [],
- host = window.isLocal ? window.server : "https://iserver.supermap.io",
- url = host + "/iserver/services/map-world/rest/maps/World";
- var serverUrl = host + "/iserver/services/plot-jingyong/rest/plot/";
- init();
- function init() {
- map = new SuperMap.Map("map", {
- controls: [
- new SuperMap.Control.ScaleLine(),
- new SuperMap.Control.Zoom(),
- new SuperMap.Control.Navigation({
- dragPanOptions: {
- enableKinetic: true
- }
- })]
- });
- map.addControl(new SuperMap.Control.LayerSwitcher(), new SuperMap.Pixel(42, 80));
- baseLayer = new SuperMap.Layer.TiledDynamicRESTLayer("World", url, {
- transparent: true,
- cacheEnabled: true
- }, {maxResolution: "auto"});
- baseLayer.events.on({"layerInitialized": addLayer});
- plotting = SuperMap.Plotting.getInstance(map, serverUrl);
- symbolLibManager = plotting.getSymbolLibManager();
- symbolLibManager.initializeAsync();
- }
- function addLayer() {
- map.addLayers([baseLayer]);
- map.setCenter(new SuperMap.LonLat(0, 0), 0);
- }
- function createLayer() {
- widgets.alert.clearAlert();
- PlottingDrawCancel();
- if (plottingEdit) {
- plottingEdit.deactivate();
- }
- var plottingLayerName = "plottingLayer_" + Math.ceil(Math.random() * 1000);
- var plottingLayer = new SuperMap.Layer.PlottingLayer(plottingLayerName, serverUrl);
- plottingLayer.events.on({"added": layerAdded});
- map.addLayers([plottingLayer]);
- }
- function layerAdded(addedEvt) {
- plottingLayers.push(addedEvt.layer);
- var successMessage = resources.text_layer + addedEvt.layer.name + resources.text_createSuccess;
- widgets.alert.showAlert(successMessage, true);
- // 绘制标号;
- drawGraphicObject = new SuperMap.Control.DrawFeature(addedEvt.layer, SuperMap.Handler.GraphicObject);
- //态势标绘编辑
- plottingEdit = new SuperMap.Control.PlottingEdit();
- //添加态势标绘控件
- map.addControls([plottingEdit, drawGraphicObject]);
- }
- function removeLayer() {
- widgets.alert.clearAlert();
- if (plottingLayers.length !== 0) {
- plottingEdit.unselectFeatures();
- var plottingLayer = plottingLayers[plottingLayers.length - 1];
- plottingLayer.events.on({"removed": layerRemoved});
- map.removeLayer(plottingLayer);
- map.removeControl(plottingLayer.drawGraphicObject);
- } else {
- widgets.alert.showAlert(resources.msg_NoPlottingLayer, false);
- }
- if (plottingLayers.length !== 0) {
- drawGraphicObject.layer = plottingLayers[plottingLayers.length - 1];
- } else {
- drawGraphicObject = null;
- }
- }
- function layerRemoved(removedEvt) {
- plottingLayers.pop();
- var successMessage = resources.text_layer + removedEvt.layer.name + resources.text_deleteSuccess;
- widgets.alert.showAlert(successMessage, true);
- }
- function plotSymbol() {
- widgets.alert.clearAlert();
- if (drawGraphicObject && drawGraphicObject !== null) {
- drawGraphicObject.activate();
- drawGraphicObject.handler.libID = 421;
- drawGraphicObject.handler.symbolCode = 10200;
- drawGraphicObject.handler.serverUrl = serverUrl;
- }
- }
- //取消绘制
- function PlottingDrawCancel() {
- widgets.alert.clearAlert();
- if (drawGraphicObject) {
- drawGraphicObject.deactivate();
- } else {
- var map = document.getElementById('map');
- map.oncontextmenu = function () {
- window.event.returnValue = false;
- return false;
- }
- }
- if (plottingEdit) {
- plottingEdit.activate();
- } else {
- var map = document.getElementById('map');
- map.oncontextmenu = function () {
- window.event.returnValue = false;
- return false;
- }
- }
- }
- document.onmouseup = function (evt) {
- var evt = evt || window.event;
- if (evt.button === 2) {
- PlottingDrawCancel(evt);
- return false;
- }
- };
- </script>
- </body>
- </html>
|