1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <!--********************************************************************
- * 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>
- <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%;
- }
- #plottingPanel {
- float: left;
- background: #ffffff;
- width: 250px;
- height: 100%;
- border: 1px solid #3473b7;
- }
- </style>
- <body style=" margin: 0;overflow: hidden;background: #fff;width: 100%;height:100%;position: absolute;top: 0;">
- <div id="plottingPanel">
- <div class="easyui-panel" style="position:absolute;top:0px;bottom:0px;left:0px;right:0px;padding:5px; width: 100%;">
- <div class="easyui-tabs" style="width: 100%;height: 100%">
- <div id="stylePanel" data-i18n="[title]resources.text_attributePanel"></div>
- </div>
- </div>
- </div>
- <div id="map"></div>
- <script type="text/javascript" include="bootstrap-css,plottingPanel" src="../js/include-web.js"></script>
- <script type="text/javascript" include="iclient-plot-leaflet" src="../../dist/leaflet/include-leaflet.js"></script>
- <script type="text/javascript" include="StylePanel" src="../js/plottingPanel/PlottingPanel.Include.js"></script>
- <script type="text/javascript">
- var host = window.isLocal ? window.server : "https://iserver.supermap.io";
- var url = host + "/iserver/services/map-china400/rest/maps/China_4326";
- var serverUrl = host + "/iserver/services/plot-jingyong/rest/plot/";
- var map;
- map = L.map('map', {
- preferCanvas: true,
- crs: L.CRS.EPSG4326,
- center: [0,0],
- maxZoom: 18,
- zoom: 2
- });
- L.supermap.tiledMapLayer(url).addTo(map);
- var plottingLayer = L.supermap.plotting.plottingLayer("plot", serverUrl);
- plottingLayer.addTo(map);
- var drawControl = L.supermap.plotting.drawControl(plottingLayer);
- drawControl.addTo(map);
- var editControl = L.supermap.plotting.editControl();
- editControl.addTo(map);
- L.supermap.plotting.initStylePanel("stylePanel", serverUrl, editControl);
- function loadSymbolLib(){
- var symbolLibManager = L.supermap.plotting.getControl(map, serverUrl).getSymbolLibManager();
- symbolLibManager.on(SuperMap.Plot.Event.initializecompleted,symbolLibInitializeCompleted);
- symbolLibManager.initializeAsync();
- }
- function symbolLibInitializeCompleted(){
- plotSymbol();
- }
- function plotSymbol() {
- //线面标号
- var polygonPoints = [];
- polygonPoints.push(new L.latLng(-11.232812197819818,-52.28812080668847));
- polygonPoints.push(new L.latLng(18.852702842151643,-3.3455361848108325));
- plottingLayer.createSymbol(22, 1003, polygonPoints);
- //标绘点标号
- var dotPoints = [];
- dotPoints.push(new L.latLng(19.86325625,6.679675));
- plottingLayer.createSymbol(421, 9, dotPoints,{dScale:3});
- }
- function clearMap(){
- plottingLayer.removeAllFeatures();
- }
- window.onload = function(){
- loadSymbolLib();
- };
- </script>
- </body>
- </html>
|