123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- <!--********************************************************************
- * Copyright© 2000 - 2021 SuperMap Software Co.Ltd. All rights reserved.
- *********************************************************************-->
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title data-i18n="resources.title_editPlottingLayer"></title>
- <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;
- width: 300px;
- text-align: center;
- z-index: 100;
- border-radius: 4px;
- }
- .input-group {
- margin-bottom: 12px;
- }
- </style>
- </head>
- <body>
- <div id="toolbar" class="panel panel-primary">
- <div class='panel-heading'>
- <h5 class='panel-title text-center' data-i18n="resources.title_editPlottingLayer"></h5></div>
- <div class='panel-body content'>
- <div class='panel'>
- <div class='input-group'>
- <span class='input-group-addon' data-i18n="resources.text_editLayer"></span>
- <select class='form-control' id='editable' onchange="editableChanges()">
- <option value='0'>false</option>
- <option value='1'>true</option>
- </select>
- </div>
- <div class='input-group'>
- <span class='input-group-addon' data-i18n="resources.text_lockLayer"></span>
- <select class='form-control' id='locked' onchange="lockedChanges()">
- <option value='0'>false</option>
- <option value='1'>true</option>
- </select>
- </div>
- <div class='input-group'>
- <span class='input-group-addon' data-i18n="resources.text_selectLayer"></span>
- <select class='form-control' id='selected' onchange="selectedChanges()">
- <option value='0'>false</option>
- <option value='1'>true</option>
- </select>
- </div>
- </div>
- <input type="button" class="btn btn-default" data-i18n="[value]resources.btn_drawMarker" style="margin-bottom: 10px" onclick="drawPolygon()"/>
- </div>
- </div>
- <div id="map"></div>
- <script type="text/javascript" include="bootstrap" src="../js/include-web.js"></script>
- <script type="text/javascript" exclude="iclient-classic" include="iclient8c-plot" src="../../dist/classic/include-classic.js"></script>
- <script>
- var map, baseLayer, plottingLayer, plottingEdit, drawFeature;
- var host = window.isLocal ? window.server : "https://iserver.supermap.io";
- var mapurl = 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", mapurl, {
- transparent: true,
- cacheEnabled: true
- }, {maxResolution: "auto"});
- baseLayer.events.on({"layerInitialized": addLayer});
- plottingLayer = new SuperMap.Layer.PlottingLayer("PlottingLayer", serverUrl);
- plottingEdit = new SuperMap.Control.PlottingEdit();
- drawFeature = new SuperMap.Control.DrawFeature(plottingLayer, SuperMap.Handler.GraphicObject);
- drawFeature.events.on({"featureadded": drawCompleted});
- map.addControls([plottingEdit, drawFeature]);
- }
- function addLayer() {
- map.addLayers([baseLayer, plottingLayer]);
- map.setCenter(new SuperMap.LonLat(0, 0), 0);
- if (plottingLayer.isEditable)
- document.getElementById("editable").value = 1;
- else
- document.getElementById("editable").value = 0;
- if (plottingLayer.isLocked)
- document.getElementById("locked").value = 1;
- else
- document.getElementById("locked").value = 0;
- if (plottingLayer.isSelected)
- document.getElementById("selected").value = 1;
- else
- document.getElementById("selected").value = 0;
- }
- function drawCompleted() {
- drawFeature.deactivate();
- plottingEdit.activate();
- }
- function editableChanges() {
- plottingLayer.setEditable(document.getElementById("editable").selectedIndex);
- }
- function lockedChanges() {
- plottingLayer.setLocked(document.getElementById("locked").selectedIndex);
- }
- function selectedChanges() {
- plottingLayer.setSelected(document.getElementById("selected").selectedIndex);
- }
- function drawPolygon() {
- plottingEdit.deactivate();
- drawFeature.handler.serverUrl = serverUrl;
- drawFeature.handler.libID = 0;
- drawFeature.handler.symbolCode = 32;
- drawFeature.activate();
- }
- function PlottingDrawCancel() {
- if (drawFeature) {
- drawFeature.deactivate();
- }
- if (plottingEdit) {
- plottingEdit.activate();
- }
- }
- document.onmouseup = function (evt) {
- var evt = evt || window.event;
- if (evt.button === 2) {
- PlottingDrawCancel();
- return false;
- }
- evt.stopPropagation();
- }
- </script>
- </body>
- </html>
|