123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497 |
- import { myBridge } from './map';
- import test2 from './test2.json';
- export function invokeParams(ActionName, params) {
- console.log(ActionName, params);
- myBridge.bridgeContent.Invoke({
- ActionName: ActionName,
- Parameters: {
- ...params
- }
- });
- }
- export function invokeParamsMap(mapId, ActionName, params) {
- console.log(ActionName, params);
- let map = mapId ? 'splitBridgeContent' + mapId : 'bridgeContent';
- myBridge[map].Invoke({
- ActionName: ActionName,
- Parameters: {
- ...params
- }
- });
- }
- export function addJuHePointSearchFun(mapId) {
- invokeParamsMap(mapId, 'MapClickAll', {
- status: true,
- is_draw: true,
- is_code: false
- });
- }
- export function addJuHePointSearch() {
- invokeParams('MapClickAll', {
- status: true,
- is_draw: true,
- is_code: false
- });
- }
- /**
- * 打点
- * @param {*} name 打点方法name,关闭时可做标识用
- * @param {*} param.imageUrl 打点图标,需要使用new URL(``, import.meta.url).href转为链接
- * @param {*} param.url 数据源接口地址
- */
- export function addJuHePoint(name, data, label) {
- invokeParams('ShowData', {
- name: name,
- data: {
- content: data,
- parsegeometry: 'function(item){return {x:Number(item.x),y:Number(item.y)}}'
- },
- legendVisible: false,
- popupEnabled: false,
- renderer: {
- type: 'simple',
- label: label,
- visualVariables: [],
- symbol: {
- type: 'simple-marker',
- size: 15,
- color: 'rgba(0,128,255,0.4)',
- outline: {
- width: 0.5,
- color: '#0080FF'
- }
- // type: 'picture-marker',
- // url: new URL(`@/assets/image/mapTools/2.png`, import.meta.url).href,
- // width: '64px',
- // height: '64px'
- }
- },
- featureReduction: {
- type: 'cluster',
- clusterRadius: '150px',
- popupTemplate: {
- title: 'Cluster summary',
- content: 'This cluster represents {cluster_count} earthquakes.',
- fieldInfos: [
- {
- fieldName: 'cluster_count',
- format: {
- places: 0,
- digitSeparator: true
- }
- }
- ]
- },
- clusterMinSize: '20px',
- clusterMaxSize: '50px',
- labelingInfo: [
- {
- deconflictionStrategy: 'none',
- labelExpressionInfo: {
- expression: "Text($feature.cluster_count, '#,###')"
- },
- symbol: {
- type: 'text',
- color: '#ffffff',
- font: {
- weight: 'bold',
- // family: 'Noto Sans',
- size: '16px'
- }
- },
- labelPlacement: 'center-center'
- }
- ]
- }
- });
- }
- // 简单打点
- export function addPoint(data, name) {
- invokeParams('ShowData', {
- name: name,
- data: {
- content: data,
- parsegeometry: 'function(item){return {x:Number(item.x),y:Number(item.y)}}'
- },
- legendVisible: false,
- popupEnabled: false,
- renderer: {
- type: 'simple',
- label: '测试车辆',
- visualVariables: [],
- symbol: {
- type: 'simple-marker',
- size: 10,
- color: 'rgba(0,128,255,0.4)',
- outline: {
- width: 0.5,
- color: '#0080FF'
- }
- }
- }
- });
- }
- // 简单打点
- export function replacePoint(data, name) {
- invokeParams('ShowData', {
- name: name,
- mode: 'replace',
- data: {
- content: data,
- parsegeometry: 'function(item){return {x:Number(item.x),y:Number(item.y)}}'
- },
- legendVisible: false,
- popupEnabled: false,
- renderer: {
- type: 'simple',
- label: '测试车辆',
- visualVariables: [],
- symbol: {
- type: 'simple-marker',
- size: 10,
- color: 'rgba(0,128,255,0.4)',
- outline: {
- width: 0.5,
- color: '#0080FF'
- }
- }
- }
- });
- }
- /**
- * 带图标打点
- * @param {*} name 打点方法name,关闭时可做标识用
- * @param {*} param.imageUrl 打点图标,需要使用new URL(``, import.meta.url).href转为链接
- * @param {*} param.url 数据源接口地址
- */
- export function addImagePoint(name, params) {
- invokeParams('ShowData', {
- name: name,
- data: {
- url: new URL(`@/utils/map/test.json`, import.meta.url).href,
- parsedata: 'function(d){return d}',
- parsegeometry: 'function(item){return {x:Number(item.x),y:Number(item.y)}}'
- },
- legendVisible: false,
- popupEnabled: false,
- renderer: {
- type: 'simple',
- label: '测试车辆',
- visualVariables: [],
- symbol: {
- type: 'picture-marker',
- url: params.imageUrl,
- width: '56px',
- height: '56px'
- }
- },
- labels: [
- {
- fields: ['#.size'],
- color: [255, 255, 255, 1],
- size: 15,
- labelPlacement: 'center-center'
- }
- ]
- });
- }
- //点线面隐藏
- export function closePoint(name) {
- invokeParams('ShowData', {
- name: name,
- mode: 'visible',
- visible: false
- });
- }
- //轨迹
- export function addTrajectory() {
- invokeParams('ShowData', {
- name: 'car_layer1',
- type: 'track',
- isLocate: true,
- data: {
- isComputingRote: false,
- url: './Data/1212/GPS模拟数据.json',
- parsedata: 'function(d){return d.data}',
- parsegeometry: 'function(item){return {x:Number(item.X),y:Number(item.Y)}}'
- },
- legendVisible: true,
- popupEnabled: true,
- renderer: {
- type: 'unique-value',
- uniqueValueInfos: [
- {
- value: 'line',
- symbol: {
- type: 'line-3d',
- symbolLayers: [
- {
- type: 'line',
- size: 2,
- material: {
- color: 'black'
- },
- cap: 'round',
- join: 'round'
- }
- ]
- }
- },
- {
- value: 'start',
- symbol: {
- type: 'simple-marker',
- size: 20,
- color: 'red',
- outline: {
- width: 0.5,
- color: 'white'
- }
- }
- },
- {
- value: 'end',
- symbol: {
- type: 'simple-marker',
- size: 20,
- color: 'orange',
- outline: {
- width: 0.5,
- color: 'white'
- }
- }
- }
- ]
- }
- });
- }
- //轨迹播放
- export function playTrajectory() {
- invokeParams('ShowData', {
- name: 'car_layer1',
- mode: 'player',
- action: 'play',
- speed: 20,
- showline: true,
- renderer: {
- type: 'unique-value',
- uniqueValueInfos: [
- {
- value: 'line',
- symbol: {
- type: 'line-3d',
- symbolLayers: [
- {
- type: 'line',
- size: 2,
- material: {
- color: 'green'
- },
- cap: 'round',
- join: 'round'
- }
- ]
- }
- },
- {
- value: 'flowlabel',
- symbol: {
- type: 'text',
- color: 'black',
- text: '{{FID}}\r\n{{DATETIME}}\r\n\r\n',
- font: {
- size: 10,
- weight: 'bold'
- }
- }
- },
- {
- value: 'marker',
- symbol: {
- type: 'simple-marker',
- size: 20,
- color: 'red',
- outline: {
- width: 0.5,
- color: 'white'
- }
- }
- }
- ]
- }
- });
- }
- //标绘制线
- export function startBidding(visible = true) {
- invokeParams('userSketch', {
- type: 'point', //'point',
- visible: visible,
- isTools: true,
- isLocate: true,
- position: 'top-right',
- activeSymbol: {
- type: 'simple-marker',
- size: 5,
- color: 'red',
- outline: {
- width: 0.5,
- color: 'white'
- }
- }
- });
- }
- //画线
- export function addPolyLine(data, name) {
- invokeParams('ShowData', {
- name: name || 'layer1',
- type: 'polyline',
- data: {
- content: data,
- parsegeometry: "function(item){return [Number(item['x']), Number(item['y'])]}"
- },
- legendVisible: false,
- popupEnabled: false,
- renderer: {
- type: 'simple',
- label: '测试',
- visualVariables: [],
- symbol: {
- type: 'line-3d',
- symbolLayers: [
- {
- type: 'line',
- size: 2,
- material: {
- color: 'red'
- },
- cap: 'round',
- join: 'round'
- }
- ]
- }
- }
- });
- }
- export function juHe() {
- invokeParams('ShowData', {
- name: 'car_layer',
- // type: 'cluster',
- isLocate: true,
- data: {
- url: new URL(`@/utils/map/test2.json`, import.meta.url).href,
- parsegeometry: 'function(item){return {x:Number(item.X),y:Number(item.Y)}}'
- },
- popupEnabled: false,
- legendVisible: false,
- featureReduction: {
- type: 'cluster',
- clusterRadius: '200px',
- // maxClusterRadius: 200,
- labelingInfo: [
- {
- symbol: {
- type: 'text',
- color: '#004a5d',
- font: {
- size: '12px'
- }
- },
- labelPlacement: 'center-center'
- }
- ],
- labelsVisible: true,
- popupEnabled: false,
- minScale: 0,
- maxScale: 0
- },
- renderer: {
- type: 'unique-value',
- field: 'STATUSNAME',
- uniqueValueInfos: [
- {
- value: '已结案',
- label: '已结案',
- symbol: {
- type: 'simple-marker',
- size: 20,
- color: 'green',
- outline: {
- width: 0.5,
- color: 'white'
- }
- }
- }
- ]
- }
- // labels: [
- // {
- // fields: ['#.STATUSNAME'],
- // color: [255, 255, 255, 1],
- // size: 10,
- // labelPlacement: 'center-center'
- // }
- // ]
- });
- }
- //添加arcGisMap图层
- export function addArcgisMap() {
- invokeParams('AddArcgisMap', {
- name: '疾控图层',
- url: 'https://zgscim.china-gis.com/server/rest/services/basemap/basemap_white/MapServer',
- type: 'wmts'
- });
- }
- //开始输出点坐标点
- export function startOutputPoint() {
- invokeParams('outputClickPosition', {
- type: 'position',
- mode: 'start',
- popupEnabled: false,
- symbol: {
- type: 'simple-marker',
- size: 6,
- color: 'black',
- outline: {
- width: 0.5,
- color: 'white'
- }
- }
- });
- }
- //关闭输出点坐标
- export function closeOutputPoint() {
- invokeParams('outputClickPosition', {
- type: 'position',
- mode: 'stop'
- });
- }
- //定位
- export function gotoPosition(point) {
- invokeParams('goToPosition', {
- positon: point,
- heading: 0,
- tilt: 45,
- hasImg: true,
- marker: {
- size: 16,
- color: '#000fff'
- },
- zoom: 18,
- isRotation360: false
- });
- }
|