123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- <!--********************************************************************
- * Copyright© 2000 - 2021 SuperMap Software Co.Ltd. All rights reserved.
- *********************************************************************-->
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title data-i18n="resources.title_drawGeoGraphicObject"></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;
- 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_drawGeoGraphicObject"></h5></div>
- <div class='panel-body content'>
- <input type="button" class="btn btn-default" data-i18n="[value]resources.text_input_value_drawLine" onclick="draw_line()"/>
- <input type="button" class="btn btn-default" data-i18n="[value]resources.text_input_value_drawPolygon" onclick="draw_polygon()"/>
- <input type="button" class="btn btn-default" data-i18n="[value]resources.btn_drawText" onclick="draw_text()"/>
- <input type="button" class="btn btn-default" data-i18n="[value]resources.text_input_value_clear" onclick="clearFeatures()"/>
- </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, layer, plottingEdit, lineLayer, plottingLayer,
- drawFeature;
- var host = window.isLocal ? window.server : "https://iserver.supermap.io";
- var mapurl = host + "/iserver/services/map-world/rest/maps/World";
- var plotUrl = host + "/iserver/services/plot-jingyong/rest/plot/";
- init();
- function init() {
- map = new SuperMap.Map("map", {
- controls: [
- new SuperMap.Control.Zoom(),
- new SuperMap.Control.Navigation(),
- ]
- });
- map.addControl(new SuperMap.Control.LayerSwitcher(), new SuperMap.Pixel(42, 80));
- layer = new SuperMap.Layer.TiledDynamicRESTLayer("World", mapurl, null, {maxResolution: "auto"});
- layer.events.on({"layerInitialized": addLayer});
- plottingLayer = new SuperMap.Layer.PlottingLayer("标绘图层", plotUrl);
- plottingLayer.style = {
- fillColor: "#66cccc",
- fillOpacity: 0.4,
- strokeColor: "#66cccc",
- strokeOpacity: 1,
- strokeWidth: 3,
- pointRadius: 6
- };
- drawFeature = new SuperMap.Control.DrawFeature(plottingLayer, SuperMap.Handler.GraphicObject);
- //态势标绘编辑
- plottingEdit = new SuperMap.Control.PlottingEdit();
- map.addControls([plottingEdit, drawFeature]);
- }
- function addLayer() {
- map.addLayers([layer, plottingLayer]);
- //显示地图范围
- map.setCenter(new SuperMap.LonLat(0, 0), 0);
- }
- function draw_line() {
- clearFeatures();
- var locationPointWCs = [];
- locationPointWCs.push(new SuperMap.Geometry.Point(0, 0));
- locationPointWCs.push(new SuperMap.Geometry.Point(0, 20));
- locationPointWCs.push(new SuperMap.Geometry.Point(20, 10));
- locationPointWCs.push(new SuperMap.Geometry.Point(10, 30));
- plottingLayer.createSymbolWC(0, SuperMap.Plot.SymbolType.POLYLINESYMBOL, locationPointWCs);
- }
- function draw_polygon() {
- clearFeatures();
- var locationPointWCs = [];
- locationPointWCs.push(new SuperMap.Geometry.Point(20, 0));
- locationPointWCs.push(new SuperMap.Geometry.Point(10, 20));
- locationPointWCs.push(new SuperMap.Geometry.Point(30, 40));
- locationPointWCs.push(new SuperMap.Geometry.Point(60, 10));
- plottingLayer.createSymbolWC(0, SuperMap.Plot.SymbolType.ARBITRARYPOLYGONSYMBOL, locationPointWCs);
- }
- function draw_text() {
- clearFeatures();
- plottingLayer.createTextWC("Text", new SuperMap.Geometry.Point(20, 0), {});
- }
- function clearFeatures() {
- plottingLayer.removeAllFeatures();
- }
- //取消标绘与编辑
- function plottingAllDeactivate() {
- drawFeature.deactivate();
- plottingEdit.deactivate();
- }
- //取消标绘,激活标绘编辑控件
- function PlottingDrawCancel() {
- plottingAllDeactivate();
- plottingEdit.activate();
- }
- document.onmouseup = function (evt) {
- var evt = evt || window.event;
- if (evt.button === 2) {
- PlottingDrawCancel();
- return false;
- }
- evt.stopPropagation();
- }
- </script>
- </body>
- </html>
|