Home
last modified time | relevance | path

Searched refs:onMapPress (Results 1 – 18 of 18) sorted by relevance

/expo/packages/expo-maps/android/src/main/java/expo/modules/maps/googleMaps/
H A DGoogleMapsCallbacks.kt30 fun setupOnMapPress(onMapPress: ViewEventCallback<LatLngRecord>) { in <lambda>()
32 onMapPress(LatLngRecord(it)) in <lambda>()
H A DGoogleMapsView.kt45 private val onMapPress by EventDispatcher<LatLngRecord>() constant
287 callbacks.setupOnMapPress(onMapPress) in setupCallbacks()
/expo/packages/expo-maps/ios/ExpoMaps/AppleMaps/
H A DAppleMapsView.swift23 var onMapPress = EventDispatcher() variable
89 onMapPress(LatLngRecord(coordinate: pressCoordinates).toDictionary()) in handleTap()
/expo/ios/versioned/sdk48/ExpoMaps/ExpoMaps/AppleMaps/
H A DAppleMapsView.swift23 var onMapPress = EventDispatcher() variable
89 onMapPress(LatLngRecord(coordinate: pressCoordinates).toDictionary()) in handleTap()
/expo/ios/versioned/sdk49/ExpoMaps/ExpoMaps/AppleMaps/
H A DAppleMapsView.swift23 var onMapPress = EventDispatcher() variable
89 onMapPress(LatLngRecord(coordinate: pressCoordinates).toDictionary()) in handleTap()
/expo/packages/expo-maps/src/
H A DMap.types.ts235 onMapPress?: (event: OnMapPressEvent) => void;
/expo/packages/expo-maps/build/
H A DMap.types.d.ts211 onMapPress?: (event: OnMapPressEvent) => void;
H A DMap.types.js.map1 …l when user clicks on the map.\n *\n * @default () => {}\n */\n onMapPress?: (event: OnMapP…
/expo/apps/native-component-list/src/screens/Location/
H A DGeofencingScreen.tsx134 const onMapPress = async ({ nativeEvent: { coordinate } }: MapEvent) => {
185 onPress={onMapPress}
/expo/apps/native-component-list/src/screens/ExpoMaps/screens/
H A DCallbacksExample.tsx44 title: 'Enable onMapPress event',
158 onMapPress={(event) => {
H A DMapMoveExample.tsx43 onMapPress={async (event) => {
/expo/packages/expo-maps/ios/ExpoMaps/GoogleMaps/
H A DGoogleMapsViewDelegate.swift21 expoMapView?.onMapPress(LatLngRecord(coordinate: coordinate).toDictionary()) in mapView()
H A DGoogleMapsView.swift33 var onMapPress = EventDispatcher() variable
/expo/ios/versioned/sdk49/ExpoMaps/ExpoMaps/GoogleMaps/
H A DGoogleMapsViewDelegate.swift21 expoMapView?.onMapPress(LatLngRecord(coordinate: coordinate).toDictionary()) in mapView()
H A DGoogleMapsView.swift33 var onMapPress = EventDispatcher() variable
/expo/ios/versioned/sdk48/ExpoMaps/ExpoMaps/GoogleMaps/
H A DGoogleMapsViewDelegate.swift21 expoMapView?.onMapPress(LatLngRecord(coordinate: coordinate).toDictionary()) in mapView()
H A DGoogleMapsView.swift33 var onMapPress = EventDispatcher() variable
/expo/home/screens/DiagnosticsScreen/
H A DGeofencingDiagnosticsScreen.tsx153 onMapPress = ({ nativeEvent: { coordinate } }: MapPressEvent) => {
217 onPress={this.onMapPress}