GPS Signal Strength

Last Updated on : 2021-08-27 11:07:18download

This topic describes the properties and example of the IP camera (IPC) Global Positioning System (GPS) signal strength component TYIpcGpsSignal.

Preview

GPS Signal Strength

Properties

Field Description Required Type Default value
lteSignal The LTE signal strength. No number undefined
gpsSignal The GPS signal strength. No number undefined
imageStyle The style of each icon. No ViewStyle {}
containerStyle The style of the container. No ViewStyle {}

Example

import { TYIpcGpsSignal } from '@tuya/tuya-panel-ipc-sdk';

return (
  <View>
      <TYIpcGpsSignal containerStyle={{ marginLeft: 50 }} gpsSignal={0} lteSignal={50} />
  </View>
)