function toFullExtent() {
goToZoom(0,0);
m_view.zoom = 1
}
function btFullExtent_Click() {
toFullExtent()
}
function ZoomIn(level) {
if (level) {
m_view.goTo({
zoom: level
});
} else if (level == 0) {
m_view.goTo({
zoom: 0
});
} else {
m_zoom.zoomIn();
}
}
function btZoomIn_Click() {
ZoomIn()
}
function btZoomOut_Click() {
ZoomOut()
}
function ZoomOut(level) {
if (level) {
m_view.goTo({
zoom: level
});
} else if (level == 0) {
m_view.goTo({
zoom: 0
});
} else {
m_zoom.zoomOut();
}
}
function btDrawPolygon_Click() {
measureSquare()
}
function measureSquare() {
measurePolygon(m_drawtool, m_view)
}
function measureLength() {
if (currentMapMode == "2D") {
measurePolyline(m_drawtool, m_view)
} else {
if (lengthMeasureWidget) {
if (!lengthMeasureWidget.destroyed) {
lengthMeasureWidget.destroy();
return
}
}
createLengthMeasureWidget()
}
}
function goToCar(x,y) {
require([
"esri/geometry/Point"
], function ( Point ) {
var point = new Point({
x: x-0,
y: y-0,
spatialReference: m_view.spatialReference
});
m_view.goTo({
target: point,
zoom: 8
})
})
}
function btDrawPolyline_Click() {
measureLength()
}
function createLengthMeasureWidget() {
require(["esri/widgets/DirectLineMeasurement3D", "dojo/domReady!"],
function (DirectLineMeasurement3D) {
lengthMeasureWidget = new DirectLineMeasurement3D({
view: m_view
});
m_view.ui.add(lengthMeasureWidget, "top-right");
});
}
function measurePolylineByPoint(x, y, x1, y1) {
var length;
require(["esri/Map", "esri/views/MapView", "esri/layers/MapImageLayer", "esri/layers/TileLayer", "esri/geometry/Geometry", "esri/geometry/Extent", "esri/tasks/GeometryService", "esri/layers/GraphicsLayer", "esri/widgets/ScaleBar", "esri/WebMap", "esri/geometry/SpatialReference", "esri/Graphic", "esri/views/2d/draw/Draw", "esri/geometry/Polyline", "esri/geometry/geometryEngine"],
function (Map, MapView, MapImageLayer, TileLayer, Geometry, Extent, GeometryService, GraphicsLayer, ScaleBar, WebMap, SpatialReference, Graphic, Draw, Polyline, geometryEngine) {
var polyline = new Polyline({
paths: [[x, y], [x1, y1]],
spatialReference: 2379
});
length = geometryEngine.planarLength(polyline, "kilometers");
});
return length;
}
function measurePolyline(draw, view) {
require(["esri/Map", "esri/views/MapView", "esri/layers/MapImageLayer", "esri/layers/TileLayer", "esri/geometry/Geometry", "esri/geometry/Extent", "esri/tasks/GeometryService", "esri/layers/GraphicsLayer", "esri/widgets/ScaleBar", "esri/WebMap", "esri/geometry/SpatialReference", "esri/Graphic", "esri/views/2d/draw/Draw", "esri/geometry/Polyline", "esri/geometry/geometryEngine"],
function (Map, MapView, MapImageLayer, TileLayer, Geometry, Extent, GeometryService, GraphicsLayer, ScaleBar, WebMap, SpatialReference, Graphic, Draw, Polyline, geometryEngine) {
var action = draw.create("polyline");
view.focus();
action.on("vertex-add", drawPolyline);
action.on("cursor-update", drawPolyline);
action.on("vertex-remove", drawPolyline);
action.on("draw-complete", drawPolyline);
function drawPolyline(evt) {
var vertices = evt.vertices;
btClear_Click();
var polyline = createPolyline(vertices);
var graphic = createGraphic(polyline);
GraphicsLayer_DrawLayer.add(graphic);
var length = geometryEngine.planarLength(polyline, "kilometers");
if (length < 0) {
var simplifiedPolyline = geometryEngine.simplify(polyline);
if (simplifiedPolyline) {
if (currentMapMode == "2D") {
length = geometryEngine.planarLength(simplifiedPolyline, "kilometers")
} else {
length = geometryEngine.geodesicLength(simplifiedPolyline, "kilometers")
}
}
}
labelLength(polyline, length)
}
function createPolyline(vertices) {
return new Polyline({
paths: vertices,
spatialReference: m_view.spatialReference
})
}
function createGraphic(polyline) {
graphic = new Graphic({
geometry: polyline,
symbol: {
type: "simple-line",
color: [178, 102, 234, .8],
width: 2
}
});
return graphic
}
function labelLength(geom, area) {
var graphic = new Graphic({
geometry: geom.extent.center,
symbol: {
type: "text",
color: "black",
haloColor: "black",
haloSize: "1px",
text: area.toFixed(2) + " km",
xoffset: 3,
yoffset: 3,
font: {
size: 14,
family: "sans-serif"
}
}
});
GraphicsLayer_DrawLayer.add(graphic)
}
})
}
function measurePolygon(draw, view) {
require(["esri/Map", "esri/views/MapView", "esri/layers/MapImageLayer", "esri/layers/TileLayer", "esri/geometry/Geometry", "esri/geometry/Extent", "esri/tasks/GeometryService", "esri/layers/GraphicsLayer", "esri/widgets/ScaleBar", "esri/WebMap", "esri/geometry/SpatialReference", "esri/Graphic", "esri/views/2d/draw/Draw", "esri/geometry/Polygon", "esri/geometry/geometryEngine"],
function (Map, MapView, MapImageLayer, TileLayer, Geometry, Extent, GeometryService, GraphicsLayer, ScaleBar, WebMap, SpatialReference, Graphic, Draw, Polygon, geometryEngine) {
var action = draw.create("polygon");
view.focus();
action.on("vertex-add", drawPolygon);
action.on("cursor-update", drawPolygon);
action.on("vertex-remove", drawPolygon);
action.on("draw-complete", drawPolygon);
function drawPolygon(evt) {
var vertices = evt.vertices;
btClear_Click();
var polygon = createPolygon(vertices);
var graphic = createGraphic(polygon);
GraphicsLayer_DrawLayer.add(graphic);
var area = geometryEngine.planarArea(polygon, "square-kilometers");
if (area < 0) {
var simplifiedPolygon = geometryEngine.simplify(polygon);
if (simplifiedPolygon) {
if (currentMapMode == "2D") {
area = geometryEngine.planarArea(simplifiedPolygon, "square-kilometers")
} else {
area = geometryEngine.geodesicArea(simplifiedPolygon, "square-kilometers")
}
}
}
labelAreas(polygon, area)
}
function createPolygon(vertices) {
return new Polygon({
rings: vertices,
spatialReference: m_view.spatialReference
})
}
function createGraphic(polygon) {
graphic = new Graphic({
geometry: polygon,
symbol: {
type: "simple-fill",
color: [178, 102, 234, .8],
style: "solid",
outline: {
color: [255, 255, 255],
width: 2
}
}
});
return graphic
}
function labelAreas(geom, area) {
var graphic = new Graphic({
geometry: geom.centroid,
symbol: {
type: "text",
color: "black",
haloColor: "black",
haloSize: "1px",
text: area.toFixed(2) + " 平方千米",
xoffset: 3,
yoffset: 3,
font: {
size: 14,
family: "sans-serif"
}
}
});
GraphicsLayer_DrawLayer.add(graphic)
}
})
}
function btPrintPicture_Click() {
downLoadPicture()
}
function downLoadPicture() {
if (m_printTool) {
if (!m_printTool.destroyed) {
m_printTool.destroy();
return
}
}
require(["esri/widgets/Print"],
function (Print) {
m_printTool = new Print({
view: m_view,
printServiceUrl: GetConfigDataByName("PrintTaskURL")
});
m_view.ui.add(m_printTool, "top-right")
})
}
function btPrintPicture_Click2() {
require(["esri/tasks/PrintTask", "esri/tasks/support/PrintParameters", "esri/tasks/support/PrintTemplate"],
function (PrintTask, PrintParameters, PrintTemplate) {
var printTask = new PrintTask(GetConfigDataByName("PrintTaskURL"));
var template = new PrintTemplate;
template.exportOptions = {
width: 1200,
height: 700,
dpi: 96
};
template.format = "JPG";
template.layout = "MAP_ONLY";
template.preserveScale = true;
var params = new PrintParameters;
params.view = m_view;
params.template = template;
printTask.execute(params).then(function (evt) {
window.open(evt.url, "_blank")
})
})
}
function btGetGraphicByJson() {
var jsonStr = '{"ExChangeRoot": {"Features": [' + ' { "type": "polygon", "featureName": "用地", "Feature":[ {"Geometry": { "Rings": [{ "Ring": "1000,-1000|0,-1500|-1000,-1000|-1000,1000|1000,1000|2000,0" } ]},"Attribute": { "ID": "1", "地块面积": "100", "建筑限高": "20" }, "ToolTip": "用地地块","Color": "yellow", "Style": "solid" } ] },' + '{ "type": "polyline", "featureName": "道路", "Feature": [{"ShowInfo":"yes", "Geometry": {"Paths": [{ "Path": "3778,-2008|2777,-2816|3777,-3021|3777,-3529|3772,-3928|3774,-4405|3777,-5206" }] }, "Attribute": {"ID": "2","道路名": "人民大道", "道路长度": "10000", "道路宽度": "25" }, "ToolTip": "人民大道", "Color": [225,0,0,0.5], "Size": "5" }] },' + '{ "type": "point", "featureName": "兴趣点", "Feature":[ { "Geometry": { "Points":[ { "Point": "2600,900" } ]},"Attribute": { "ID": "3","名称": "东方明珠" }, "ToolTip": "东方明珠","Color": "blue", "Size": "10", "Style": "square"}]}]}}';
doGetGraphicByJson(jsonStr)
}
function jsontagUndefined(firstChild) {
if (firstChild != undefined) {
return firstChild
}
return null
}
function attributesToHTMLStr(att) {
var str = "";
for (var name in att) {
str += name + ":" + att[name] + "
"
}
return str
}
function polygonxmlToArray(xmlStr) {
var end = [];
var strs = xmlStr.split("|");
for (var i = 0; i < strs.length; i++) {
var s = strs[i].split(",");
if (currentMapMode == "2D") {
var aa = [parseFloat(s[0]), parseFloat(s[1])];
end.push(aa)
} else {
var aa = [parseFloat(s[0]), parseFloat(s[1]), parseFloat(s[2])];
end.push(aa)
}
end.push(aa)
}
end.push([parseFloat(strs[0].split(",")[0]), parseFloat(strs[0].split(",")[1])]);
return end
}
function polylinexmlToArray(xmlStr) {
var end = [];
var strs = xmlStr.split("|");
for (var i = 0; i < strs.length; i++) {
var s = strs[i].split(",");
if (currentMapMode == "2D") {
var aa = [parseFloat(s[0]), parseFloat(s[1])];
end[i] = aa
} else {
var aa = [parseFloat(s[0]), parseFloat(s[1]), parseFloat(s[2])];
end[i] = aa
}
}
return end
}
var imgSizeList = [];
function doGetGraphicByJson(jsons, isGoTo) {
var jsonStr = eval("(" + jsons + ")");
btClear_Click();
var features = jsonStr.ExChangeRoot.Features;
if (features.length < 1) {
alert("无查询结果")
}
for (var k = 0; k < features.length; k++) {
switch (features[k].type) {
case "polygon":
{
var polygonFeature = features[k].Feature;
for (var i = 0; i < polygonFeature.length; i++) {
var rings = polygonFeature[i].Geometry.Rings;
for (var j = 0; j < rings.length; j++) {
var ring = rings[j].Ring;
var polygonAttribute = polygonFeature[i].Attribute;
var polygonToolTip = jsontagUndefined(polygonFeature[i].ToolTip);
var polygonColor = jsontagUndefined(polygonFeature[i].Color);
var polygonSize = jsontagUndefined(polygonFeature[i].Size);
var polygonStyle = jsontagUndefined(polygonFeature[i].Style);
xmlAddPolygon(ring, polygonToolTip, polygonColor, polygonSize, polygonStyle, polygonAttribute)
}
}
break;
}
case "polyline":
{
var polylineFeature = features[k].Feature;
for (var i = 0; i < polylineFeature.length; i++) {
var paths = polylineFeature[i].Geometry.Paths;
for (var j = 0; j < paths.length; j++) {
var path = paths[j].Path;
var polylineAttribute = polylineFeature[i].Attribute;
var polylineToolTip = jsontagUndefined(polylineFeature[i].ToolTip);
var polylineColor = jsontagUndefined(polylineFeature[i].Color);
var polylineSize = jsontagUndefined(polylineFeature[i].Size);
var polylineStyle = jsontagUndefined(polylineFeature[i].Style);
xmlAddPolyline(path, polylineToolTip, polylineColor, polylineSize, polylineStyle, polylineAttribute)
}
}
break;
}
case "point":
{
var pointFeature = features[k].Feature;
for (var i = 0; i < pointFeature.length; i++) {
var points = pointFeature[i].Geometry.Points;
for (var j = 0; j < points.length; j++) {
var point = points[j].Point;
var pointAttribute = pointFeature[i].Attribute;
var pointToolTip = jsontagUndefined(pointFeature[i].ToolTip);
var imgUrl = jsontagUndefined(pointFeature[i].ImgUrl);
var ImgWidth = jsontagUndefined(pointFeature[i].ImgWidth);
var ImgHeight = jsontagUndefined(pointFeature[i].ImgHeight);
var color = jsontagUndefined(pointFeature[i].Color);
var size = jsontagUndefined(pointFeature[i].Size);
var style = jsontagUndefined(pointFeature[i].Style);
xmlAddPoint(point, pointToolTip, imgUrl, ImgWidth, ImgHeight, color, size, style, pointAttribute)
}
}
break;
}
}
}
m_view.zoom=10;
if (isGoTo == undefined || isGoTo == null)
isGoTo = true;
if (isGoTo) {
m_view.goTo(xmlQueryExtend.expand(2))
}
}
function doDeletePointById(id) {
var list = GraphicsLayer_DrawLayer.graphics.items;
for (var i = 0; i < list.length; i++) {
if (list[i].attributes.id == id) {
GraphicsLayer_DrawLayer.remove(list[i]);
}
}
}
function doShowAreaName(layerName, fieldName, bool, size, color) {
if (!bool) {
GraphicsLayer_areaNameLayer.removeAll();
return;
}
if (!color) {
color = "black";
}
if (!size) {
size = 14;
}
var layerId = GetFeatureLayerIdbyName(layerName);
var where = "1=1";
if (layerId == -1)
return;
require(["esri/tasks/QueryTask", "esri/tasks/support/Query", "esri/layers/FeatureLayer", "dojo/_base/array", "dojo/dom", "esri/Graphic",
"esri/geometry/Point"],
function (QueryTask, Query, FeatureLayer, arrayUtils, dom, Graphic, Point) {
var pointGraphicArray = [];
var urlI = dyLayer.url + "/" + layerId;
var qTask = new QueryTask({
url: urlI
});
var params = new Query({
returnGeometry: true,
outFields: ["*"]
});
params.where = where;
qTask.execute(params).then(getResults).catch(promiseRejected);
function getResults(response) {
$.each(response.features, function (index, feature) {
var geometry = feature.geometry;
var text = feature.attributes[fieldName];
var point = {
type: "point",
x: geometry.extent.center.x,
y: geometry.extent.center.y,
spatialReference: m_view.spatialReference
};
var textSymbol = {
type: "text", // autocasts as new TextSymbol()
color: color,
text: text,
font: { // autocasts as new Font()
size: size,
weight: "bold"
}
};
var pointGraphic = new Graphic({
geometry: point,
symbol: textSymbol
});
pointGraphicArray.push(pointGraphic);
});
GraphicsLayer_areaNameLayer.addMany(pointGraphicArray);
}
function promiseRejected(err) {
console.error("错误信息: ", err.message);
}
});
}
function xmlAddPolygon(ring, polygonToolTip, polygonColor, polygonSize, polygonStyle, polygonAttribute) {
require(["esri/Graphic", "esri/geometry/SpatialReference"],
function (Graphic, SpatialReference) {
if (!polygonColor) {
polygonColor = [227, 139, 79, .8]
}
if (!polygonSize) {
polygonSize = 2
}
switch (polygonStyle) {
case "backwarddiagonal":
polygonStyle = "backward-diagonal";
break;
case "cross":
polygonStyle = "cross";
break;
case "diagonalcross":
polygonStyle = "diagonal-cross";
break;
case "forwarddiagonal":
polygonStyle = "forward-diagonal";
break;
case "horizontal":
polygonStyle = "horizontal";
break;
case "vertical":
polygonStyle = "vertical";
break;
case "solid":
polygonStyle = "solid";
break;
default:
polygonStyle = "none";
break
}
var ringsarray = polygonxmlToArray(ring);
var polygon = {
type: "polygon",
rings: ringsarray,
spatialReference: m_view.spatialReference
};
var fillSymbol = {
type: "simple-fill",
color: polygonColor,
style: polygonStyle,
outline: {
color: [255, 255, 255],
width: polygonSize
}
};
var polygonGraphic = new Graphic({
geometry: polygon,
symbol: fillSymbol,
attributes: polygonAttribute
});
GraphicsLayer_DrawLayer.add(polygonGraphic);
var popupTemplate = {
title: polygonToolTip,
content: attributesToHTMLStr(polygonAttribute)
};
// polygonGraphic.popupTemplate = popupTemplate;
var extent = polygonGraphic.geometry.extent;
extent.spatialReference = m_view.spatialReference;
if (xmlQueryExtend) {
xmlQueryExtend = xmlQueryExtend.union(extent)
} else {
xmlQueryExtend = extent
}
})
}
function xmlAddPolyline(path, polylineToolTip, polylineColor, polylineSize, polylineStyle, polylineAttribute) {
require(["esri/Graphic"],
function (Graphic) {
if (polylineSize == null) {
polylineSize = 1
}
if (polylineColor == null) {
polylineColor = [226, 119, 40]
}
switch (polylineStyle) {
case "dash":
polylineStyle = "dash";
break;
case "dashdot":
polylineStyle = "dash-dot";
break;
case "none":
polylineStyle = "none";
break;
case "dot":
polylineStyle = "dot";
break;
default:
polylineStyle = "solid"
}
var polyline = {
type: "polyline",
paths: polylinexmlToArray(path),
spatialReference: m_view.spatialReference
};
var lineSymbol = {
type: "simple-line",
color: polylineColor,
style: polylineStyle,
width: polylineSize
};
var polylineGraphic = new Graphic({
geometry: polyline,
symbol: lineSymbol,
attributes: polylineAttribute
});
GraphicsLayer_DrawLayer.add(polylineGraphic);
var popupTemplate = {
title: polylineToolTip,
content: attributesToHTMLStr(polylineAttribute)
};
// polylineGraphic.popupTemplate = popupTemplate;
var extent = polylineGraphic.geometry.extent;
extent.spatialReference = m_view.spatialReference;
if (xmlQueryExtend) {
xmlQueryExtend = xmlQueryExtend.union(extent)
} else {
xmlQueryExtend = extent
}
})
}
function xmlAddPoint(points, pointToolTip, imgUrl, imgWidth, imgHeight, color, size, style, pointAttribute) {
require(["esri/geometry/Extent", "esri/Graphic"],
function (Extent, Graphic) {
var xy = points.split(",");
var point;
if (currentMapMode == "2D") {
point = {
type: "point",
x: xy[0],
y: xy[1],
spatialReference: m_view.spatialReference
}
} else {
var z=0;
if(xy.length==3){
z=xy[2];
}else{
z=10;
}
point = {
type: "point",
x: xy[0],
y: xy[1],
z: z,
spatialReference: m_view.spatialReference
}
}
var markerSymbol;
if (imgUrl != null) {
imgSizeList = [imgWidth.split("px")[0], imgHeight.split("px")[0]];
pointAttribute.newImgWidth=imgSizeList[0];
pointAttribute.newImgHeight=imgSizeList[1];
var newImgWidth = imgSizeList[0] - (imgSizeList[0] * (14 - m_view.zoom) * 0.05);//zoom每级差5%
var newImgHeight = imgSizeList[1] - (imgSizeList[1] * (14 - m_view.zoom) * 0.05)
markerSymbol =
{
type: "point-3d", // autocasts as new PointSymbol3D()
symbolLayers: [
{
type: "icon", // autocasts as new IconSymbol3DLayer()
resource: {
href: imgUrl
},
size: newImgWidth,
outline: {
color: "white",
size: 2
}
}
],
verticalOffset:{
screenLength: 20,
maxWorldLength: 200,
minWorldLength: 10
},
callout: {
type: "line", // autocasts as new LineCallout3D()
color: "#36B1E8",
size: 0,
border: {
color: "#36B1E8"
}
}
}
} else {
if (color == null) {
color = [226, 119, 40]
}
if (size == null) {
size = 2
}
switch (style) {
case "x":
style = "x";
break;
case "diamond":
style = "diamond";
break;
case "cross":
style = "cross";
break;
case "square":
style = "square";
break;
default:
style = "circle"
}
markerSymbol = {
type: "simple-marker",
color: color,
style: style,
size: size
}
}
// debugger;
var pointGraphic = new Graphic({
geometry: point,
symbol: markerSymbol,
attributes: pointAttribute
});
var textSymbol = {
type: "text", // autocasts as new TextSymbol()
color: [254, 238, 175],
text: pointAttribute.名称,
yoffset: "35px",
font: { // autocasts as new Font()
size: 14
}
};
var textGraphic = new Graphic({
geometry: point,
symbol: textSymbol
});
GraphicsLayer_DrawLayer.add(textGraphic);
GraphicsLayer_DrawLayer.add(pointGraphic);
var popupTemplate = {
title: pointToolTip,
content: attributesToHTMLStr(pointAttribute)
};
// pointGraphic.popupTemplate = popupTemplate;
var extent = new Extent({
xmax: pointGraphic.geometry.x - 0 + 250,
ymax: pointGraphic.geometry.y - 0 + 250,
xmin: pointGraphic.geometry.x - 250,
ymin: pointGraphic.geometry.y - 250,
spatialReference: m_view.spatialReference
});
if (xmlQueryExtend) {
xmlQueryExtend = xmlQueryExtend.union(extent)
} else {
xmlQueryExtend = extent
}
})
}
function xmlAddPointJCZ(x,y, pointToolTip, imgUrl, imgWidth, imgHeight, color, size, style, pointAttribute,radius) {
require(["esri/geometry/Extent", "esri/Graphic","esri/geometry/Circle"],
function (Extent, Graphic,Circle) {
var point;
point = {
type: "point",
x: x,
y: y,
spatialReference: m_view.spatialReference
}
var markerSymbol;
if (color == null) {
color = [0, 0, 0]
}
if (size == null) {
size = 10
}
/*switch (style) {
case "x":
style = "x";
break;
case "diamond":
style = "diamond";
break;
case "cross":
style = "cross";
break;
case "square":
style = "square";
break;
default:
style = "circle"
}*/
markerSymbol = {
type: "simple-marker",
color: color,
style: "circle",
size: size
};
// debugger;
var pointGraphic = new Graphic({
geometry: point,
symbol: markerSymbol,
attributes: pointAttribute
});
var polygon =new Circle( {
type: "circle",
center:point,
radius: radius,
spatialReference: m_view.spatialReference
});
var fillSymbol = {
type: "simple-fill",
color:[255, 0, 0,0.3],
style: "solid",
outline: {
color: [255, 255, 255,0.3],
width: 1
}
};
var circle = new Graphic({
geometry: polygon,
symbol: fillSymbol
});
//蓝[0,0,255] 绿[0,255,0] 黄[255,255,0]
GraphicsLayer_DrawLayer.add(pointGraphic);
GraphicsLayer_DrawLayer.add(circle);
})
}
function btnCircle_Click() {
drawSquare()
}
function drawSquare() {
require(["esri/Map", "esri/views/MapView", "esri/layers/MapImageLayer", "esri/layers/TileLayer", "esri/geometry/Geometry", "esri/geometry/Extent", "esri/tasks/GeometryService", "esri/layers/GraphicsLayer", "esri/widgets/ScaleBar", "esri/WebMap", "esri/geometry/SpatialReference", "esri/Graphic", "esri/views/2d/draw/Draw", "esri/geometry/Polygon", "esri/geometry/geometryEngine"],
function (Map, MapView, MapImageLayer, TileLayer, Geometry, Extent, GeometryService, GraphicsLayer, ScaleBar, WebMap, SpatialReference, Graphic, Draw, Polygon, geometryEngine) {
var action = m_drawtool.create("polygon");
m_view.focus();
action.on("vertex-add", drawPolygon);
action.on("cursor-update", drawPolygon);
action.on("vertex-remove", drawPolygon);
action.on("draw-complete", drawPolygon);
function drawPolygon(evt) {
var vertices = evt.vertices;
btClear_Click();
var polygon = createPolygon(vertices);
var graphic = createGraphic(polygon);
GraphicsLayer_DrawLayer.add(graphic);
queryExtent = polygon
}
function createPolygon(vertices) {
return new Polygon({
rings: vertices,
spatialReference: m_view.spatialReference
})
}
function createGraphic(polygon) {
graphic = new Graphic({
geometry: polygon,
symbol: {
type: "simple-fill",
color: [178, 102, 234, .8],
style: "solid",
outline: {
color: [255, 255, 255],
width: 2
}
}
});
return graphic
}
})
}
function btQuery_Click() {
var Str = document.getElementById("txtQueryStr").value;
var layerName = document.getElementById("txtQueryLayerName").value;
query(Str, layerName)
}
function query(Str, layerName) {
queryGraphicByDylayer();
var whereStr = "";
if (Str == "") {
whereStr = " 1=1 "
} else {
whereStr = " 1=2 ";
var xmlDoc1 = xmlUtil.loadXmlFromFile("config/layerQueryName.xml");
var layerXml = xmlDoc1.getElementsByTagName(layerName);
var mapNodes = layerXml[0].childNodes;
for (var i = 0; i < mapNodes.length; i++) {
if (xmlUtil.getNodeTagName(mapNodes[i]) == "name") {
whereStr += " or " + xmlUtil.getNodeValue(mapNodes[i]) + " like '%" + Str + "%' "
}
}
}
var layerId = GetLayerIdbyName(layerName);
if (layerId == -1) {
alert("没有此图层")
} else {
queryGraphicByDylayer(layerId, whereStr)
}
}
function queryGraphicByDylayer(layerId, whereStr, geo) {
require(["esri/tasks/QueryTask", "esri/tasks/support/Query", "esri/layers/FeatureLayer", "dojo/_base/array", "dojo/dom"],
function (QueryTask, Query, FeatureLayer, arrayUtils, dom) {
btClear_Click();
var urlI = dyLayer.url + "/" + layerId;
var qTask = new QueryTask({
url: urlI
});
var params = new Query({
geometry: queryExtent,
returnGeometry: true,
outFields: ["*"]
});
params.geometry = geo || null;
params.where = whereStr;
qTask.execute(params).then(getResults).otherwise(promiseRejected);
function getResults(response) {
var peakResults = arrayUtils.map(response.features,
function (feature) {
var obj = eval("(" + symble[layerId] + ")");
var symbolJson = obj.drawingInfo.renderer.symbol;
if (currentMapMode == "2D") {
if (symbolJson) {
if (symbolJson.type == "esriSFS") {
feature.symbol = {
type: "simple-fill",
style: changeStyle(symbolJson.style),
color: symbolJson.color,
outline: {
style: changeStyle(symbolJson.outline.style),
color: symbolJson.outline.color,
width: symbolJson.outline.width
}
}
} else if (symbolJson.type == "esriPMS") {
feature.symbol = {
type: "picture-marker",
url: "data:image/png;base64," + symbolJson.imageData,
width: symbolJson.width,
height: symbolJson.height
}
} else if (symbolJson.type == "esriSMS") {
feature.symbol = {
type: "simple-marker",
size: symbolJson.size,
color: symbolJson.color,
outline: symbolJson.outline
}
}
} else {
feature.symbol = {
type: "simple-marker",
color: rgba(255, 0, 0, 1),
outline: {
color: [0, 0, 0, 1],
width: 1
}
}
}
} else {
var verticalOffset = {
screenLength: 40,
maxWorldLength: 200,
minWorldLength: 35
};
if (symbolJson.type == "esriSFS") {
feature.symbol = {
type: "polygon-3d",
symbolLayers: [{
type: "fill",
material: {
color: symbolJson.color
}
}],
outline: {
color: symbolJson.outline.color,
size: symbolJson.outline.size
}
}
} else if (symbolJson.type == "esriPMS") {
feature.symbol = {
type: "point-3d",
symbolLayers: [{
type: "icon",
resource: {
href: "data:image/png;base64," + symbolJson.imageData
},
size: 20,
outline: {
color: "white",
size: 2
}
}],
verticalOffset: verticalOffset,
callout: {
type: "line",
color: "white",
size: 2,
border: {
color: "#40C2B4"
}
}
}
} else if (symbolJson.style == "esriSMSCircle") {
feature.symbol = {
type: "point-3d",
symbolLayers: [{
type: "icon",
resource: {
primitive: "circle"
},
size: symbolJson.size * 2,
material: {
color: symbolJson.color
},
outline: {
color: symbolJson.outline.color,
size: symbolJson.outline.size
}
}],
verticalOffset: verticalOffset,
callout: {
type: "line",
color: "white",
size: 2,
border: {
color: "#40C2B4"
}
}
}
}
}
feature.geometry.spatialReference = m_view.spatialReference;
var popupTemplate = {
title: "详细信息",
content: attributesToHTMLStr(feature.attributes)
};
feature.popupTemplate = popupTemplate;
return feature
});
GraphicsLayer_myLayer.addMany(peakResults);
m_view.goTo(peakResults)
}
function promiseRejected(err) {
console.error("错误信息: ", err.message)
}
})
}
function changeStyle(oldStyle) {
switch (oldStyle) {
case "esriSFSBackwardDiagonal":
oldStyle = "backward-diagonal";
break;
case "esriSFSCross":
oldStyle = "cross";
break;
case "esriSFSDiagonalCross":
oldStyle = "diagonal-cross";
break;
case "esriSFSForwardDiagonal":
oldStyle = "forward-diagonal";
break;
case "esriSFSHorizontal":
oldStyle = "horizontal";
break;
case "esriSFSNull":
oldStyle = "none";
break;
case "esriSFSSolid":
oldStyle = "solid";
break;
case "esriSFSVertical":
oldStyle = "vertical";
break;
case "esriSLSDash":
oldStyle = "dash";
break;
case "esriSLSDashDotDot":
oldStyle = "short-dash-dot-dot";
break;
case "esriSLSDot":
oldStyle = "dot";
break;
case "esriSLSNull":
oldStyle = "none";
break;
case "esriSLSDashDot":
oldStyle = "dash-dot";
break;
case "esriSLSSolid":
oldStyle = "solid";
break
}
return oldStyle
}
function openQuickQueryClick() {
document.getElementById("openQuickQuery").style.display = "none";
document.getElementById("quickQuery").style.display = "";
createSelect()
}
function closeQuickQueryClick() {
document.getElementById("openQuickQuery").style.display = "";
document.getElementById("quickQuery").style.display = "none"
}
function createSelect() {
var areaId = GetLayerIdbyName("特色街区");
var streetId = GetLayerIdbyName("街道乡镇");
queryOption(areaId, "areaName");
queryOption(streetId, "streetName")
}
function queryOption(layerId, selectId) {
require(["esri/tasks/QueryTask", "esri/tasks/support/Query", "esri/layers/FeatureLayer", "dojo/_base/array", "dojo/dom"],
function (QueryTask, Query, FeatureLayer, arrayUtils, dom) {
var urlI = dyLayer.url + "/" + layerId;
var qTask = new QueryTask({
url: urlI
});
var params = new Query({
geometry: queryExtent,
returnGeometry: true,
outFields: ["*"]
});
params.where = "1=1";
qTask.execute(params).then(getResults).otherwise(promiseRejected);
function getResults(response) {
var peakResults = arrayUtils.map(response.features,
function (feature) {
return feature.attributes["名称"]
});
var option = "";
for (var i = 0; i < peakResults.length; i++) {
option += ""
}
document.getElementById(selectId).innerHTML = option
}
function promiseRejected(err) {
console.error("错误信息: ", err.message)
}
})
}
function changeAreaNameSelect() {
var optionValue = areaName.value;
if (optionValue == -1) {
GraphicsLayer_DrawLayer.removeAll();
queryExtent = null
} else {
var areaId = GetLayerIdbyName("特色街区");
queryGraphicBySelect(areaId, optionValue)
}
}
function changeStreetNameSelect() {
var optionValue = streetName.value;
if (optionValue == -1) {
GraphicsLayer_DrawLayer.removeAll();
queryExtent = null
} else {
var streetId = GetLayerIdbyName("街道乡镇");
queryGraphicBySelect(streetId, optionValue)
}
}
function queryGraphicBySelect(layerId, name) {
require(["esri/tasks/QueryTask", "esri/tasks/support/Query", "esri/layers/FeatureLayer", "dojo/_base/array", "esri/Graphic", "dojo/dom"],
function (QueryTask, Query, FeatureLayer, arrayUtils, Graphic, dom) {
GraphicsLayer_DrawLayer.removeAll();
queryExtent = null;
var urlI = dyLayer.url + "/" + layerId;
var qTask = new QueryTask({
url: urlI
});
var params = new Query({
geometry: queryExtent,
returnGeometry: true,
outFields: ["*"]
});
params.where = "名称 = '" + name + "'";
qTask.execute(params).then(getResults).otherwise(promiseRejected);
function getResults(response) {
var peakResults = arrayUtils.map(response.features,
function (feature) {
if (currentMapMode == "2D") {
feature.symbol = {
type: "simple-fill",
style: "none",
color: null,
outline: {
style: "solid",
color: "red",
width: 2
}
};
feature.geometry.spatialReference = m_view.spatialReference;
queryExtent = feature.geometry;
feature.geometry.spatialReference = m_view.spatialReference;
return feature
} else {
for (var i = 0; i < feature.geometry.rings[0].length; i++) {
feature.geometry.rings[0][i].push(1)
}
var polygon = {
type: "polygon",
rings: feature.geometry.rings
};
var polygonGraphic = new Graphic({
geometry: polygon
});
polygonGraphic.symbol = {
type: "polygon-3d",
symbolLayers: [{
type: "fill",
material: {
color: [0, 0, 0, 0]
},
outline: {
color: "red",
size: "4px"
}
}]
}
}
queryExtent = feature.geometry;
polygonGraphic.geometry.spatialReference = m_view.spatialReference;
return polygonGraphic
});
GraphicsLayer_DrawLayer.addMany(peakResults);
m_view.goTo(peakResults[0].geometry.extent.expand(2))
}
function promiseRejected(err) {
console.error("错误信息: ", err.message)
}
})
}
function Polygon_Click() {
queryExtent = null;
require(["esri/Map", "esri/views/MapView", "esri/layers/MapImageLayer", "esri/layers/TileLayer", "esri/geometry/Geometry", "esri/geometry/Extent", "esri/tasks/GeometryService", "esri/layers/GraphicsLayer", "esri/widgets/ScaleBar", "esri/WebMap", "esri/geometry/SpatialReference", "esri/Graphic", "esri/views/2d/draw/Draw", "esri/geometry/Polygon", "esri/geometry/geometryEngine"],
function (Map, MapView, MapImageLayer, TileLayer, Geometry, Extent, GeometryService, GraphicsLayer, ScaleBar, WebMap, SpatialReference, Graphic, Draw, Polygon, geometryEngine) {
var action = m_drawtool.create("polygon");
m_view.focus();
action.on("vertex-add", drawPolygon);
action.on("cursor-update", drawPolygon);
action.on("vertex-remove", drawPolygon);
action.on("draw-complete", drawPolygon);
function drawPolygon(evt) {
var vertices = evt.vertices;
GraphicsLayer_DrawLayer.removeAll();
var polygon = createPolygon(vertices);
var graphic = createGraphic(polygon);
GraphicsLayer_DrawLayer.add(graphic);
queryExtent = polygon
}
function createPolygon(vertices) {
return new Polygon({
rings: vertices,
spatialReference: m_view.spatialReference
})
}
function createGraphic(polygon) {
graphic = new Graphic({
geometry: polygon,
symbol: {
type: "simple-fill",
style: "none",
color: null,
outline: {
style: "solid",
color: "red",
width: 2
}
}
});
return graphic
}
})
}
function btnQuickQuery() {
queryList.splice(0, queryList.length);
var layerName = select_zylx.value;
var zymc = txt_zymc.value;
var keyStr = txt_keyStr.value;
dynamicLayerURL = GetConfigDataByName("QueryLayer");
var layerId = GetLayerIdbyName(layerName);
var whereStr = " 1=1 ";
var optgroup = select_zylx.options[select_zylx.selectedIndex].parentNode.attributes;
if (optgroup["label"]) {
if (zymc) {
switch (layerName) {
case "ETPS":
whereStr += " and ETPS_NAME like '%" + zymc + "%' ";
break;
case "PE":
whereStr += " and NAME like '%" + zymc + "%' ";
break;
case "CORP":
whereStr += " and CORP_NAME like '%" + zymc + "%' ";
break
}
}
if (keyStr) {
whereStr += "and ADDRESS like '%" + keyStr + "%'"
}
} else {
if (layerName == "YDYZ") {
if (zymc) {
whereStr += "and MDNAME like '%" + zymc + "%'"
}
if (keyStr) {
whereStr += "and ADDRESS like '%" + keyStr + "%'"
}
} else {
if (zymc) {
whereStr += "and 载体名称 like '%" + zymc + "%'"
}
if (keyStr) {
whereStr += "and 载体地址 like '%" + keyStr + "%'"
}
}
}
doQuickQuery(layerId, whereStr)
}
function doQuickQuery(layerId, whereStr) {
require(["esri/tasks/QueryTask", "esri/tasks/support/Query", "esri/layers/FeatureLayer", "dojo/_base/array", "dojo/dom"],
function (QueryTask, Query, FeatureLayer, arrayUtils, dom) {
var layerStr = "";
var layerName = select_zylx.value;
var optgroup = select_zylx.options[select_zylx.selectedIndex].parentNode.attributes;
if (optgroup["label"]) {
switch (layerName) {
case "ETPS":
layerStr = "ETPS_NAME";
break;
case "PE":
layerStr = "NAME";
break;
case "CORP":
layerStr = "CORP_NAME";
break
}
} else {
if (layerName == "YDYZ") {
layerStr = "MDNAME"
} else {
layerStr = "载体名称"
}
}
GraphicsLayer_fickerLayer.removeAll();
GraphicsLayer_myLayer.removeAll();
if (!dynamicLayerURL) {
dynamicLayerURL = GetConfigDataByName("QueryLayer")
}
var urlI = dynamicLayerURL + "/" + layerId;
var qTask = new QueryTask({
url: urlI
});
var params = new Query({
geometry: queryExtent,
returnGeometry: true,
outFields: ["*"]
});
params.where = whereStr;
qTask.execute(params).then(getResults).otherwise(promiseRejected);
function getResults(response) {
var peakResults = arrayUtils.map(response.features,
function (feature) {
if (currentMapMode == "2D") {
var obj = eval("(" + symble[layerId] + ")");
var symbolJson = obj.drawingInfo.renderer.symbol;
if (symbolJson.type == "esriSFS") {
feature.symbol = {
type: "simple-fill",
style: changeStyle(symbolJson.style),
color: symbolJson.color,
outline: {
style: changeStyle(symbolJson.outline.style),
color: symbolJson.outline.color,
width: symbolJson.outline.width
}
}
} else if (symbolJson.type == "esriPMS") {
feature.symbol = {
type: "picture-marker",
url: "data:image/png;base64," + symbolJson.imageData,
width: symbolJson.width,
height: symbolJson.height
}
} else if (symbolJson.style == "esriSMSCircle") {
feature.symbol = {
type: "simple-marker",
style: "circle",
color: symbolJson.color,
size: symbolJson.size,
outline: {
color: symbolJson.outline.color,
width: symbolJson.outline.width
}
}
}
} else {
var verticalOffset = {
screenLength: 40,
maxWorldLength: 200,
minWorldLength: 35
};
var obj = eval("(" + symble[layerId] + ")");
var symbolJson = obj.drawingInfo.renderer.symbol;
if (symbolJson.type == "esriSFS") {
} else if (symbolJson.type == "esriPMS") {
feature.symbol = {
type: "point-3d",
symbolLayers: [{
type: "icon",
resource: {
href: "data:image/png;base64," + symbolJson.imageData
},
size: 20,
outline: {
color: "white",
size: 2
}
}],
verticalOffset: verticalOffset,
callout: {
type: "line",
color: "white",
size: 2,
border: {
color: "#40C2B4"
}
}
}
} else if (symbolJson.style == "esriSMSCircle") {
feature.symbol = {
type: "point-3d",
symbolLayers: [{
type: "icon",
resource: {
primitive: "circle"
},
size: symbolJson.size * 2,
material: {
color: symbolJson.color
},
outline: {
color: symbolJson.outline.color,
size: symbolJson.outline.size
}
}],
verticalOffset: verticalOffset,
callout: {
type: "line",
color: "white",
size: 2,
border: {
color: "#40C2B4"
}
}
}
}
}
feature.geometry.spatialReference = m_view.spatialReference;
var popupTemplate = {
title: "资源信息",
content: openInfoWin(feature.attributes)
};
feature.popupTemplate = popupTemplate;
var list = {
"名称": feature.attributes[layerStr],
"几何": feature
};
queryList.push(list);
return feature
});
GraphicsLayer_myLayer.addMany(peakResults);
m_view.goTo(peakResults);
dom.byId("printResults").innerHTML = "资产数: " + peakResults.length + ""
}
function promiseRejected(err) {
console.error("错误信息: ", err.message)
}
})
}
function openResultTable() {
document.getElementById("resultList").style.display = "";
dyCretateTableByArray("resultListTable", queryList, ["名称"], ["名称"], false)
}
function closeResultList() {
document.getElementById("resultList").style.display = "none"
}
function openInfoWin(att) {
var str = "";
switch (select_zylx.value) {
case "CORP":
{
str = quickQueryAttributesToHTMLStr(att);
break
}
case "ETPS":
{
str = quickQueryAttributesToHTMLStr(att);
break
}
case "PE":
{
str = quickQueryAttributesToHTMLStr(att);
break
}
case "PARK":
{
str = quickQueryIFrameToHTMLStr(att);
break
}
case "BUILDING":
{
str = quickQueryIFrameToHTMLStr(att);
break
}
case "YDYZ":
{
str = quickQueryAttributesToHTMLStr(att);
break
}
}
return str
}
function quickQueryAttributesToHTMLStr(att) {
var arList = [];
var linkURL = "";
var id;
var username;
var pwd;
switch (select_zylx.value) {
case "CORP":
{
arList = [{
cname: "CORP_NAME",
showname: "组织名称"
},
{
cname: "ADDRESS",
showname: "地址"
}];
id = String(att.CORP_INFO_ID);
username = "wdzc";
pwd = "68cf63c62bc68d71fc41c028375e2f6e";
linkURL = "http://10.214.3.195:8001/coop/syn/detail_register_view_out?ifEncrypt=0&userName=" + username + "&passWord=" + pwd + "&entyId=" + id + "&type=06";
break
}
case "ETPS":
{
arList = [{
cname: "UNISC_ID",
showname: "统一社会信用代码"
},
{
cname: "REG_NO",
showname: "注册号"
},
{
cname: "ETPS_NAME",
showname: "企业名称"
},
{
cname: "ADDRESS",
showname: "住所"
}];
id = String(att.ETPS_ID);
username = "wdzc";
pwd = "68cf63c62bc68d71fc41c028375e2f6e";
linkURL = "http://10.214.3.195:8001/coop/syn/detail_register_view_out?ifEncrypt=0&userName=" + username + "&passWord=" + pwd + "&entyId=" + id + "&type=02";
break
}
case "PE":
{
arList = [{
cname: "UNISC_ID",
showname: "统一社会信用代码"
},
{
cname: "REG_NO",
showname: "注册号"
},
{
cname: "NAME",
showname: "个体名称"
},
{
cname: "ADDRESS",
showname: "地址"
}];
id = String(att.PE_ID);
username = "wdzc";
pwd = "68cf63c62bc68d71fc41c028375e2f6e";
linkURL = "http://10.214.3.195:8001/coop/syn/detail_register_view_out?ifEncrypt=0&userName=" + username + "&passWord=" + pwd + "&entyId=" + id + "&type=05";
break
}
case "YDYZ":
{
arList = [{
cname: "MDNAME",
showname: "门店名称"
},
{
cname: "ADDRESS",
showname: "详细地址"
},
{
cname: "STREET",
showname: "街道"
},
{
cname: "ROAD",
showname: "道路"
},
{
cname: "JYZLENUMITEM",
showname: "经营种类"
},
{
cname: "JYZL",
showname: "经营种类(其他)"
},
{
cname: "FW_SX",
showname: "房屋属性"
},
{
cname: "MZDW_BZ",
showname: "备注(基本信息)"
},
{
cname: "ZZ_QK",
showname: "证照情况"
},
{
cname: "JYZ",
showname: "经营者"
},
{
cname: "JYZ_IDCARD",
showname: "身份证(经营者)"
},
{
cname: "JYZ_LXDZ",
showname: "联系地址(经营者)"
},
{
cname: "JYZ_JG",
showname: "籍贯(经营者)"
},
{
cname: "JYZ_ZZDZ",
showname: "暂住地址(经营者)"
},
{
cname: "ZZ_BZ",
showname: "备注(证照情况)"
},
{
cname: "FD_NAME",
showname: "房东姓名/单位"
},
{
cname: "FD_JG",
showname: "籍贯(房东)"
},
{
cname: "FD_LXDZ",
showname: "联系地址(房东)"
},
{
cname: "FD_LXFS",
showname: "联系方式(房东)"
},
{
cname: "FD_BZ",
showname: "备注(房东)"
},
{
cname: "JYZ_LXFS",
showname: "联系方式(经营者)"
},
{
cname: "FW_BZ",
showname: "备注(房屋)"
},
{
cname: "JYMJ",
showname: "经营面积"
},
{
cname: "QT_ZRDY",
showname: "责任队员"
},
{
cname: "ORGAN",
showname: "部门"
},
{
cname: "QT_SSGD",
showname: "所属岗段"
},
{
cname: "JW_LD",
showname: "居委领导"
},
{
cname: "ROADTYPE",
showname: "道路类型"
},
{
cname: "NUM",
showname: "门牌号"
},
{
cname: "GRIDCENTER",
showname: "网格中心"
},
{
cname: "QT_WG",
showname: "网格"
},
{
cname: "ZZ_SX",
showname: "证照属性"
},
{
cname: "JW_NAME",
showname: "居委名称"
},
{
cname: "JW_LXDH",
showname: "联系电话(居委)"
},
{
cname: "ZXZTSJ",
showname: "注销状态时间"
},
{
cname: "CFAJH",
showname: "曾经是否处罚过"
},
{
cname: "JE",
showname: "金额(处罚)"
},
{
cname: "OPTIME",
showname: "操作时间"
},
{
cname: "ISZY",
showname: "是否重要"
},
{
cname: "QT_LXFS",
showname: "联系方式"
},
{
cname: "OPUSER",
showname: "操作人"
},
{
cname: "JYZ_BZ",
showname: "备注"
},
{
cname: "ZXZT",
showname: "注销状态"
},
{
cname: "BZ",
showname: "备注"
},
{
cname: "LONG1",
showname: "经度gps"
},
{
cname: "LAT",
showname: "纬度gps"
}];
id = String(att.ROWGUID);
username = "wdzc";
pwd = "68cf63c62bc68d71fc41c028375e2f6e";
linkURL = "http://10.214.3.195:8001/coop/syn/detail_register_view_out?ifEncrypt=0&userName=" + username + "&passWord=" + pwd + "&entyId=" + id + "&type=05";
break
}
}
var str = "";
for (var name in att) {
for (var i = 0; i < arList.length; i++) {
if (name == arList[i].cname) {
str += arList[i].showname + ":" + att[name] + "
"
}
}
}
str += "
[点击详情信息]";
return str
}
function quickQueryIFrameToHTMLStr(att) {
var sourceid = String(att.主键);
var url = "";
switch (select_zylx.value) {
case "PARK":
{
url = "http://10.214.4.162:8080/parkms/tj/parksysSuperviseCD_SSLDL.action?systemsign=408080a758f26bb00158f26f13f30001&is_Park=1&buildingInfosId=" + sourceid;
break
}
case "BUILDING":
{
url = "http://10.214.4.162:8080/parkms/tj/parksysSuperviseCD_SSLDL.action?systemsign=408080a758f26bb00158f26f13f30001&is_Park=2&buildingInfosId=" + sourceid;
break
}
}
var str = "