const getters = {
|
viewer: state => state.viewer.viewer,
|
mviewer: state => state.mobile.mviewer,
|
popupBgUrl: state => state.popupParams.popupBgUrl,
|
pupupQRUrl: state => state.popupParams.pupupQRUrl,
|
pointPosition: state => state.popupParams.pointPosition,
|
terminus: state => state.popupParams.terminus,
|
startingPoint: state => state.popupParams.startingPoint,
|
stateName: state => state.popupParams.stateName,
|
siteName: state => state.popupParams.siteName,
|
introduceText: state => state.popupParams.introduceText,
|
panoramaUrl: state => state.popupParams.panoramaUrl,
|
detailsPopup: state => state.popupParams.detailsPopup,
|
panoramaPopup: state => state.popupParams.panoramaPopup
|
}
|
export default getters
|