Add mock GPS simulator and configurable location sources

This commit is contained in:
2026-03-24 14:24:53 +08:00
parent 0295893b56
commit 2cf0bb76b4
16 changed files with 2575 additions and 122 deletions

View File

@@ -1175,12 +1175,45 @@
color: #45624b;
}
.debug-input {
flex: 1;
min-height: 72rpx;
padding: 0 22rpx;
border-radius: 18rpx;
background: rgba(255, 255, 255, 0.92);
box-shadow: inset 0 0 0 2rpx rgba(22, 48, 32, 0.08);
font-size: 24rpx;
color: #244132;
text-align: left;
}
.debug-inline-stack {
flex: 1;
display: flex;
flex-direction: column;
gap: 14rpx;
}
.control-row {
display: flex;
gap: 14rpx;
margin-top: 18rpx;
}
.control-row--compact {
margin-top: 0;
}
.control-row--compact .control-chip {
padding: 16rpx 10rpx;
font-size: 22rpx;
}
.control-row--single .control-chip {
flex: none;
width: 100%;
}
.debug-section .control-row:last-child {
margin-bottom: 0;
}