Home
last modified time | relevance | path

Searched refs:GoogleMapsView (Results 1 – 11 of 11) sorted by relevance

/expo/packages/expo-maps/android/src/main/java/expo/modules/maps/
H A DExpoGoogleMapsModule.kt8 import expo.modules.maps.googleMaps.GoogleMapsView in <lambda>()
20 val view = uiManager.resolveView(viewHandle) as GoogleMapsView in <lambda>()
28 val view = uiManager.resolveView(viewHandle) as GoogleMapsView in <lambda>()
33 View(GoogleMapsView::class) { in <lambda>()
52 OnViewDestroys<GoogleMapsView> { in <lambda>()
72 Prop("mapType") { view: GoogleMapsView, mapType: MapType -> in <lambda>()
76 Prop("showZoomControls") { view: GoogleMapsView, enable: Boolean -> in <lambda>()
80 Prop("showCompass") { view: GoogleMapsView, enable: Boolean -> in <lambda>()
84 Prop("showMapToolbar") { view: GoogleMapsView, enable: Boolean -> in <lambda>()
92 Prop("showLevelPicker") { view: GoogleMapsView, enable: Boolean -> in <lambda>()
[all …]
/expo/packages/expo-maps/ios/ExpoMaps/
H A DExpoGoogleMapsModule.swift49 GoogleMapsView(sendEvent: self.sendEvent) in definition()
52 Prop("showCompass") { (view: GoogleMapsView, enable: Bool) in in definition()
56 Prop("showMyLocationButton") { (view: GoogleMapsView, enable: Bool) in in definition()
60 Prop("showLevelPicker") { (view: GoogleMapsView, enable: Bool) in in definition()
64 Prop("enableRotateGestures") { (view: GoogleMapsView, enable: Bool) in in definition()
68 Prop("enableScrollGestures") { (view: GoogleMapsView, enable: Bool) in in definition()
72 Prop("enableTiltGestures") { (view: GoogleMapsView, enable: Bool) in in definition()
76 Prop("enableZoomGestures") { (view: GoogleMapsView, enable: Bool) in in definition()
80 Prop("mapType") { (view: GoogleMapsView, mapType: MapType) in in definition()
112 Prop("enableTraffic") { (view: GoogleMapsView, enable: Bool) in in definition()
[all …]
/expo/ios/versioned/sdk48/ExpoMaps/ExpoMaps/
H A DExpoGoogleMapsModule.swift49 GoogleMapsView(sendEvent: self.sendEvent) in definition()
52 Prop("showCompass") { (view: GoogleMapsView, enable: Bool) in in definition()
56 Prop("showMyLocationButton") { (view: GoogleMapsView, enable: Bool) in in definition()
60 Prop("showLevelPicker") { (view: GoogleMapsView, enable: Bool) in in definition()
64 Prop("enableRotateGestures") { (view: GoogleMapsView, enable: Bool) in in definition()
68 Prop("enableScrollGestures") { (view: GoogleMapsView, enable: Bool) in in definition()
72 Prop("enableTiltGestures") { (view: GoogleMapsView, enable: Bool) in in definition()
76 Prop("enableZoomGestures") { (view: GoogleMapsView, enable: Bool) in in definition()
80 Prop("mapType") { (view: GoogleMapsView, mapType: MapType) in in definition()
112 Prop("enableTraffic") { (view: GoogleMapsView, enable: Bool) in in definition()
[all …]
/expo/ios/versioned/sdk49/ExpoMaps/ExpoMaps/
H A DExpoGoogleMapsModule.swift49 GoogleMapsView(sendEvent: self.sendEvent) in definition()
52 Prop("showCompass") { (view: GoogleMapsView, enable: Bool) in in definition()
56 Prop("showMyLocationButton") { (view: GoogleMapsView, enable: Bool) in in definition()
60 Prop("showLevelPicker") { (view: GoogleMapsView, enable: Bool) in in definition()
64 Prop("enableRotateGestures") { (view: GoogleMapsView, enable: Bool) in in definition()
68 Prop("enableScrollGestures") { (view: GoogleMapsView, enable: Bool) in in definition()
72 Prop("enableTiltGestures") { (view: GoogleMapsView, enable: Bool) in in definition()
76 Prop("enableZoomGestures") { (view: GoogleMapsView, enable: Bool) in in definition()
80 Prop("mapType") { (view: GoogleMapsView, mapType: MapType) in in definition()
112 Prop("enableTraffic") { (view: GoogleMapsView, enable: Bool) in in definition()
[all …]
/expo/packages/expo-maps/ios/ExpoMaps/GoogleMaps/
H A DGoogleMapsView.swift5 public final class GoogleMapsView: UIView, ExpoMapView { class
52 GoogleMapsView.initializeGoogleMapsServices()
H A DGoogleMapsViewDelegate.swift5 public var expoMapView: GoogleMapsView?
/expo/ios/versioned/sdk49/ExpoMaps/ExpoMaps/GoogleMaps/
H A DGoogleMapsView.swift5 public final class GoogleMapsView: UIView, ExpoMapView { class
52 GoogleMapsView.initializeGoogleMapsServices()
H A DGoogleMapsViewDelegate.swift5 public var expoMapView: GoogleMapsView?
/expo/ios/versioned/sdk48/ExpoMaps/ExpoMaps/GoogleMaps/
H A DGoogleMapsView.swift5 public final class GoogleMapsView: UIView, ExpoMapView { class
52 GoogleMapsView.initializeGoogleMapsServices()
H A DGoogleMapsViewDelegate.swift5 public var expoMapView: GoogleMapsView?
/expo/packages/expo-maps/android/src/main/java/expo/modules/maps/googleMaps/
H A DGoogleMapsView.kt21 class GoogleMapsView(context: Context, appContext: AppContext) : LinearLayout(context), OnMapReadyC… class