ordering-ui-react-native 0.23.75-test5 → 0.23.75-test6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -262,7 +262,7 @@ const MapViewComponent = (props: MapViewParams) => {
|
|
|
262
262
|
<View style={{ flex: 1 }}>
|
|
263
263
|
{!isLoadingBusinessMarkers && isFocused ? (
|
|
264
264
|
<View style={{ flex: 1 }}>
|
|
265
|
-
<MapView
|
|
265
|
+
{/* <MapView
|
|
266
266
|
ref={mapRef}
|
|
267
267
|
provider={PROVIDER_GOOGLE}
|
|
268
268
|
initialRegion={{
|
|
@@ -277,9 +277,9 @@ const MapViewComponent = (props: MapViewParams) => {
|
|
|
277
277
|
zoomControlEnabled
|
|
278
278
|
cacheEnabled
|
|
279
279
|
moveOnMarkerPress
|
|
280
|
-
|
|
280
|
+
onTouchStart={() => (following.current = false)}
|
|
281
281
|
>
|
|
282
|
-
|
|
282
|
+
<>
|
|
283
283
|
{Object.values(markerGroups).length ? (Object.values(markerGroups).map((marker: any) => (
|
|
284
284
|
<RenderMarker
|
|
285
285
|
key={marker[0]?.business_id}
|
|
@@ -318,8 +318,8 @@ const MapViewComponent = (props: MapViewParams) => {
|
|
|
318
318
|
</View>
|
|
319
319
|
</Marker>
|
|
320
320
|
) : null}
|
|
321
|
-
</>
|
|
322
|
-
</MapView>
|
|
321
|
+
</>
|
|
322
|
+
</MapView> */}
|
|
323
323
|
{/* <OFab
|
|
324
324
|
materialIcon
|
|
325
325
|
iconName="plus"
|