123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- <!--********************************************************************
- * Copyright© 2000 - 2021 SuperMap Software Co.Ltd. All rights reserved.
- *********************************************************************-->
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title data-i18n="resources.title_modifySymbolStyle"></title>
- <script type="text/javascript" include="bootstrap" src="../js/include-web.js"></script>
- <script type="text/javascript" exclude="iclient-classic" include="iclient8c-plot,PlottingPanel"
- src="../../dist/classic/include-classic.js"></script>
- <style type="text/css">
- body {
- margin: 0;
- overflow: hidden;
- background: #fff;
- width: 100%;
- height: 100%;
- position: absolute;
- top: 0;
- }
- #map {
- position: absolute;
- left: 250px;
- right: 0px;
- height: 100%;
- }
- #menu {
- float: left;
- background: #ffffff;
- width: 250px;
- height: 100%;
- border: 1px solid #3473b7;
- }
- </style>
- </head>
- <body>
- <div id="menu">
- <div class="easyui-panel" style="position:absolute;top:0px;bottom:0px;left:0px;right:0px;padding:5px; width: 100%;">
- <div id="stylePanel" data-i18n="[title]resources.text_attributePanel"></div>
- </div>
- </div>
- <div id="map"></div>
- <script>
- var plottingLayer, plottingEdit, layer, map, stylePanel;
- 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.LayerSwitcher(),
- new SuperMap.Control.ScaleLine(),
- new SuperMap.Control.Zoom(),
- new SuperMap.Control.Navigation({
- dragPanOptions: {
- enableKinetic: true
- }
- })]
- });
- layer = new SuperMap.Layer.TiledDynamicRESTLayer("World", mapurl, {
- transparent: true,
- cacheEnabled: true
- }, {maxResolution: "auto"});
- layer.events.on({"layerInitialized": addLayer});
- plottingLayer = new SuperMap.Layer.PlottingLayer("标绘图层", serverUrl);
- plottingLayer.style = {
- fillColor: "#66cccc",
- fillOpacity: 0.4,
- strokeColor: "#66cccc",
- strokeOpacity: 1,
- strokeWidth: 3,
- pointRadius: 6
- };
- //态势标绘编辑
- plottingEdit = new SuperMap.Control.PlottingEdit();
- //添加态势标绘控件
- map.addControls([plottingEdit]);
- }
- function addLayer() {
- map.addLayers([layer, plottingLayer]);
- map.setCenter(new SuperMap.LonLat(0, 0), 0);
- //创建属性面板
- stylePanel = new SuperMap.Plotting.StylePanel("stylePanel");
- stylePanel.addEditLayer(plottingLayer);
- //标绘标号
- plotSymbol();
- plottingEdit.activate();
- }
- function plotSymbol() {
- //标绘多边形
- var polygonPoints = [];
- polygonPoints.push(new SuperMap.Geometry.Point(-20, 0));
- polygonPoints.push(new SuperMap.Geometry.Point(-10, 20));
- polygonPoints.push(new SuperMap.Geometry.Point(-30, 40));
- polygonPoints.push(new SuperMap.Geometry.Point(-60, 10));
- plottingLayer.createSymbolWC(0, SuperMap.Plot.SymbolType.ARBITRARYPOLYGONSYMBOL, polygonPoints);
- //标绘折线
- var linePoints = [];
- linePoints.push(new SuperMap.Geometry.Point(0, 0));
- linePoints.push(new SuperMap.Geometry.Point(0, 20));
- linePoints.push(new SuperMap.Geometry.Point(20, 10));
- linePoints.push(new SuperMap.Geometry.Point(10, 30));
- plottingLayer.createSymbolWC(0, SuperMap.Plot.SymbolType.POLYLINESYMBOL, linePoints);
- }
- </script>
- </body>
- </html>
|