React Native for Arcgis 地图开发 TileLayer 切片(八)

针对TileLayer的封装


import React, {useState, useEffect} from 'react';
import {View, Text, ScrollView, StyleSheet, Clipboard} from 'react-native';
import {Button, List, Switch} from '@ant-design/react-native';
import {TiledLayerCtrl, LayerManager, MapManager, MapView} from '@haibalai/react-native-arcgis';
import {connect} from 'react-redux';
import WidthDrawer from '../../../../components/WithDrawer/index';
const MapId = 'baseMap';
const EditLayerId3857 = 'BP_BADXT_SZ_20191202_GRID_3857';
const EditLayerId4490 = 'BP_BADXT_SZ_20191202_GRID_4490';
/** sideBar组件
*

@param {*} renderCb renderCb是一个函数, 每次触发并且向里面传值(对象),content组件就以sideBarData的属性去接受
*/
const SideBar = ({renderCb, Home}: any) => {
const [baseMapTDTStatus, setBaseMapTDTStatus] = useState(false);
const [content, changeContent] = useState('');
const [errorContent, changeErrorContent] = useState('');
const [singleTiledLayerStatus, setSingleTiledLayerStatus] = useState(false);
useEffect(() => {
renderCb({content, errorContent});
}, [content, errorContent, renderCb]);
const getLayerId = () => {
let coordinate = Home.coordinate;
if (coordinate === '4490') {
return EditLayerId4490;
} else {
return EditLayerId3857;
}
};
const onSwitchBaseMapTDTStatus = (e: any) => {
if (!e) {
MapManager.switchBaseMap(MapId, '矢量1202')
.then((r: any) => {
changeErrorContent('');
changeContent('' + r);
Clipboard.setString('' + r);
})
.catch((e: any) => {
changeErrorContent('' + e);
Clipboard.setString('' + e);
});
} else {
MapManager.switchBaseMap(MapId, '天地图')
.then((r: any) => {
changeErrorContent('');
changeContent('' + r);
Clipboard.setString('' + r);
})
.catch((e: any) => {
changeErrorContent('' + e);
Clipboard.setString('' + e);
});
}
setBaseMapTDTStatus(e);
};
const onSwitchSingleTiledLayer = (e: boolean) => {
if (e) {
LayerManager.showLayer(MapId, getLayerId());
} else {
LayerManager.hideLayer(MapId, getLayerId());
}
setSingleTiledLayerStatus(e);
};
const onGetMapServiceInfo = () => {
TiledLayerCtrl.getMapServiceInfo(MapId, getLayerId())
.then((r: any) => {
changeErrorContent('');
changeContent(r);
})
.catch((e: any) => {
changeErrorContent(e);
});
};
const onGetRefreshInterval = () => {
TiledLayerCtrl.getRefreshInterval(MapId, getLayerId())
.then((r: any) => {
changeErrorContent('');
changeContent(r);
})
.catch((e: any) => {
changeErrorContent(e);
});
};
const onGetRequestConfiguration = () => {
TiledLayerCtrl.getRequestConfiguration(MapId, getLayerId())
.then((r: any) => {
changeErrorContent('');
changeContent(r);
})
.catch((e: any) => {
changeErrorContent(e);
});
};
const onGetUri = () => {
TiledLayerCtrl.getUri(MapId, getLayerId())
.then((r: any) => {
changeErrorContent('');
changeContent(r);
})
.catch((e: any) => {
changeErrorContent(e);
});
};
const onSetRefreshInterval = () => {

 

React Native for Arcgis 地图开发 TileLayer 切片(八) - 小专栏

posted @ 2022-11-23 16:36  haibalai  阅读(15)  评论(0编辑  收藏  举报