|
@@ -280,7 +280,7 @@ const IndoorMap: React.FC<IndoorMapProps> = ({ navigation, landmarks, promptAddL
|
|
|
|
|
|
<StatusBar backgroundColor="#121212" />
|
|
|
<CustomModal />
|
|
|
- <Text style={{ fontSize: 16, marginBottom: 5 }}>Please select a floor you would like to go to.</Text>
|
|
|
+ {/* <Text style={{ fontSize: 16, marginBottom: 5 }}>Please select a floor you would like to go to.</Text> */}
|
|
|
|
|
|
<View style={{ borderColor: "blue", borderWidth: 0, maxHeight: 50, flex: 1, flexDirection: "row", justifyContent: "center", }}>
|
|
|
|
|
@@ -317,8 +317,14 @@ const IndoorMap: React.FC<IndoorMapProps> = ({ navigation, landmarks, promptAddL
|
|
|
</View> :
|
|
|
|
|
|
<ReactNativeZoomableView
|
|
|
- zoomStep={2.8}
|
|
|
+
|
|
|
+ panBoundaryPadding={50}
|
|
|
+ // bindToBorders={false}
|
|
|
bindToBorders={true}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ zoomStep={2.8}
|
|
|
// initialZoom={2.2}
|
|
|
maxZoom={2.8}
|
|
|
minZoom={1}
|
|
@@ -379,7 +385,9 @@ const IndoorMap: React.FC<IndoorMapProps> = ({ navigation, landmarks, promptAddL
|
|
|
})
|
|
|
console.log("*this is within onLayout* SVGdim values are " + SVGdim[0] + " AND " + SVGdim[1])
|
|
|
setLocalLandmarks(transformedLandmarks)
|
|
|
- }}>
|
|
|
+ }}
|
|
|
+ style={{borderColor:"red" , borderWidth:0}}
|
|
|
+ >
|
|
|
|
|
|
{/* {firstTime == true ? undefined : loadCircles} */}
|
|
|
{loadCircles}
|