html
<table id="dg"></table>
js
$(‘#dg‘).propertygrid({ title: ‘‘, showGroup: "false", groupField: "monitoring_point_type", url: ‘/GIS/Map.aspx?GetMonitoringPoints=1‘, columns: [[ { field: ‘monitoring_point_name‘, title: ‘名称‘, width: 100 }, { field: ‘value‘, title: ‘名称‘, width: 100,hidden:true } ]], onLoadSuccess: function (data) { loadMnUpToDateImg("" + data.rows[0].monitoring_point_mn + ""); points = data.rows; addMarker(points); }, groupFormatter: function (val) { return mnType[val]; }, onClickRow: function (rowIndex, rowData) { var gpsPoint = new BMap.Point(rowData.monitoring_point_longitude, rowData.monitoring_point_latitude); map.centerAndZoom(gpsPoint, 18); loadMnUpToDateImg("" + rowData.monitoring_point_mn + ""); } });
时间: 2024-10-14 08:03:21