Home
last modified time | relevance | path

Searched refs:jsonStyleString (Results 1 – 8 of 8) sorted by relevance

/expo/packages/expo-maps/ios/ExpoMaps/
H A DExpoGoogleMapsModule.swift84 Prop("googleMapsJsonStyleString") { (view: GoogleMapsView, jsonStyleString: String) in in definition()
85 view.setMapStyle(jsonStyleString: jsonStyleString) in definition()
/expo/ios/versioned/sdk48/ExpoMaps/ExpoMaps/
H A DExpoGoogleMapsModule.swift84 Prop("googleMapsJsonStyleString") { (view: GoogleMapsView, jsonStyleString: String) in in definition()
85 view.setMapStyle(jsonStyleString: jsonStyleString) in definition()
/expo/ios/versioned/sdk49/ExpoMaps/ExpoMaps/
H A DExpoGoogleMapsModule.swift84 Prop("googleMapsJsonStyleString") { (view: GoogleMapsView, jsonStyleString: String) in in definition()
85 view.setMapStyle(jsonStyleString: jsonStyleString) in definition()
/expo/packages/expo-maps/ios/ExpoMaps/GoogleMaps/
H A DGoogleMapsView.swift172 func setMapStyle(jsonStyleString: String) { in setMapStyle()
173 if !jsonStyleString.isEmpty { in setMapStyle()
175 mapView.mapStyle = try GMSMapStyle(jsonString: jsonStyleString) in setMapStyle()
/expo/ios/versioned/sdk49/ExpoMaps/ExpoMaps/GoogleMaps/
H A DGoogleMapsView.swift172 func setMapStyle(jsonStyleString: String) { in setMapStyle()
173 if !jsonStyleString.isEmpty { in setMapStyle()
175 mapView.mapStyle = try GMSMapStyle(jsonString: jsonStyleString) in setMapStyle()
/expo/ios/versioned/sdk48/ExpoMaps/ExpoMaps/GoogleMaps/
H A DGoogleMapsView.swift172 func setMapStyle(jsonStyleString: String) { in setMapStyle()
173 if !jsonStyleString.isEmpty { in setMapStyle()
175 mapView.mapStyle = try GMSMapStyle(jsonString: jsonStyleString) in setMapStyle()
/expo/packages/expo-maps/android/src/main/java/expo/modules/maps/
H A DExpoGoogleMapsModule.kt96 Prop("googleMapsJsonStyleString") { view: GoogleMapsView, jsonStyleString: String -> in <lambda>() method
97 view.setMapStyle(jsonStyleString) in <lambda>()
/expo/packages/expo-maps/android/src/main/java/expo/modules/maps/googleMaps/
H A DGoogleMapsView.kt205 fun setMapStyle(jsonStyleString: String) { in setMapStyle()
206 if (jsonStyleString.isNotEmpty()) { in setMapStyle()
208 googleMap.setMapStyle(MapStyleOptions(jsonStyleString)) in setMapStyle()