Home
last modified time | relevance | path

Searched refs:polygons (Results 1 – 25 of 36) sorted by relevance

12

/expo/packages/expo-maps/android/src/main/java/expo/modules/maps/googleMaps/
H A DGoogleMapsPolygons.kt9 private val polygons = mutableListOf<Polygon>() constant
28 polygons.add(polygon) in setPolygons()
33 for (polygon in polygons) { in detachAndDeletePolygons()
36 polygons.clear() in detachAndDeletePolygons()
H A DGoogleMapsView.kt29 private lateinit var polygons: GoogleMapsPolygons variable
80 polygons = GoogleMapsPolygons(googleMap) in onMapReady()
225 polygons.setPolygons(polygonObjects) in setPolygons()
/expo/packages/expo-maps/ios/ExpoMaps/AppleMaps/
H A DAppleMapsPolygons.swift5 private var polygons: [MKPolygon] = [] variable
17 polygons.append(polygon) in setPolygons()
31 mapView.removeOverlays(polygons) in detachAndDeletePolygons()
32 polygons = [] in detachAndDeletePolygons()
H A DAppleMapsView.swift12 private let polygons: AppleMapsPolygons variable
45 polygons = AppleMapsPolygons(mapView: mapView)
49 … kmls = AppleMapsKMLs(mapView: mapView, markers: markers, polylines: polylines, polygons: polygons)
201 polygons.setPolygons(polygonObjects: polygonObjects) in setPolygons()
H A DAppleMapsKMLs.swift8 private let polygons: AppleMapsPolygons variable
16 …init(mapView: MKMapView, markers: AppleMapsMarkers, polylines: AppleMapsPolylines, polygons: Apple…
20 self.polygons = polygons
235 polygons.setKMLPolygons(polygonObjects: polygonObjects) in drawPolygons()
/expo/ios/versioned/sdk48/ExpoMaps/ExpoMaps/AppleMaps/
H A DAppleMapsPolygons.swift5 private var polygons: [MKPolygon] = [] variable
17 polygons.append(polygon) in setPolygons()
31 mapView.removeOverlays(polygons) in detachAndDeletePolygons()
32 polygons = [] in detachAndDeletePolygons()
H A DAppleMapsKMLs.swift8 private let polygons: AppleMapsPolygons variable
16 …init(mapView: MKMapView, markers: AppleMapsMarkers, polylines: AppleMapsPolylines, polygons: Apple…
20 self.polygons = polygons
235 polygons.setKMLPolygons(polygonObjects: polygonObjects) in drawPolygons()
H A DAppleMapsView.swift12 private let polygons: AppleMapsPolygons variable
45 polygons = AppleMapsPolygons(mapView: mapView)
49 … kmls = AppleMapsKMLs(mapView: mapView, markers: markers, polylines: polylines, polygons: polygons)
201 polygons.setPolygons(polygonObjects: polygonObjects) in setPolygons()
/expo/ios/versioned/sdk49/ExpoMaps/ExpoMaps/AppleMaps/
H A DAppleMapsPolygons.swift5 private var polygons: [MKPolygon] = [] variable
17 polygons.append(polygon) in setPolygons()
31 mapView.removeOverlays(polygons) in detachAndDeletePolygons()
32 polygons = [] in detachAndDeletePolygons()
H A DAppleMapsView.swift12 private let polygons: AppleMapsPolygons variable
45 polygons = AppleMapsPolygons(mapView: mapView)
49 … kmls = AppleMapsKMLs(mapView: mapView, markers: markers, polylines: polylines, polygons: polygons)
201 polygons.setPolygons(polygonObjects: polygonObjects) in setPolygons()
H A DAppleMapsKMLs.swift8 private let polygons: AppleMapsPolygons variable
16 …init(mapView: MKMapView, markers: AppleMapsMarkers, polylines: AppleMapsPolylines, polygons: Apple…
20 self.polygons = polygons
235 polygons.setKMLPolygons(polygonObjects: polygonObjects) in drawPolygons()
/expo/packages/expo-maps/build/
H A DMap.js51 polygons: [],
145 polygons: propObjects.filter((elem) => elem?.type === 'polygon'), property
165 …ExpoMapViewProps, ...this.props, markers: this.state.markers, polygons: this.state.polygons, polyl…
183 …ring: googleMapsJsonStyleString, markers: this.state.markers, polygons: this.state.polygons, polyl…
H A DMap.types.d.ts43 polygons: PolygonObject[];
/expo/packages/expo-maps/ios/ExpoMaps/GoogleMaps/
H A DGoogleMapsPolygons.swift5 private var polygons: [GMSPolygon] = [] variable
44 polygons.append(polygon) in setPolygons()
49 for polygon in polygons { in detachAndDeletePolygons()
52 polygons = [] in detachAndDeletePolygons()
H A DGoogleMapsView.swift12 private let polygons: GoogleMapsPolygons variable
65 polygons = GoogleMapsPolygons(mapView: mapView)
189 polygons.setPolygons(polygonObjects: polygonObjects) in setPolygons()
205 polygons.updateStrokePatterns() in updatePolygons()
/expo/ios/versioned/sdk49/ExpoMaps/ExpoMaps/GoogleMaps/
H A DGoogleMapsPolygons.swift5 private var polygons: [GMSPolygon] = [] variable
44 polygons.append(polygon) in setPolygons()
49 for polygon in polygons { in detachAndDeletePolygons()
52 polygons = [] in detachAndDeletePolygons()
H A DGoogleMapsView.swift12 private let polygons: GoogleMapsPolygons variable
65 polygons = GoogleMapsPolygons(mapView: mapView)
189 polygons.setPolygons(polygonObjects: polygonObjects) in setPolygons()
205 polygons.updateStrokePatterns() in updatePolygons()
/expo/ios/versioned/sdk48/ExpoMaps/ExpoMaps/GoogleMaps/
H A DGoogleMapsPolygons.swift5 private var polygons: [GMSPolygon] = [] variable
44 polygons.append(polygon) in setPolygons()
49 for polygon in polygons { in detachAndDeletePolygons()
52 polygons = [] in detachAndDeletePolygons()
H A DGoogleMapsView.swift12 private let polygons: GoogleMapsPolygons variable
65 polygons = GoogleMapsPolygons(mapView: mapView)
189 polygons.setPolygons(polygonObjects: polygonObjects) in setPolygons()
205 polygons.updateStrokePatterns() in updatePolygons()
/expo/ios/versioned-react-native/ABI49_0_0/Expo/ExpoKit/Core/Api/Components/Maps/
H A DABI49_0_0AIRMapPolygon.m72 NSMutableArray<MKPolygon *> *polygons = [NSMutableArray array];
80 [polygons addObject:[MKPolygon polygonWithCoordinates:coords count:holes[h].count]];
82 _interiorPolygons = polygons;
/expo/ios/versioned-react-native/ABI48_0_0/Expo/ExpoKit/Core/Api/Components/Maps/
H A DABI48_0_0AIRMapPolygon.m72 NSMutableArray<MKPolygon *> *polygons = [NSMutableArray array];
80 [polygons addObject:[MKPolygon polygonWithCoordinates:coords count:holes[h].count]];
82 _interiorPolygons = polygons;
/expo/ios/versioned-react-native/ABI47_0_0/Expo/ExpoKit/Core/Api/Components/Maps/
H A DABI47_0_0AIRMapPolygon.m72 NSMutableArray<MKPolygon *> *polygons = [NSMutableArray array];
80 [polygons addObject:[MKPolygon polygonWithCoordinates:coords count:holes[h].count]];
82 _interiorPolygons = polygons;
/expo/ios/Exponent/Versioned/Core/Api/Components/Maps/
H A DAIRMapPolygon.m72 NSMutableArray<MKPolygon *> *polygons = [NSMutableArray array];
80 [polygons addObject:[MKPolygon polygonWithCoordinates:coords count:holes[h].count]];
82 _interiorPolygons = polygons;
/expo/packages/expo-maps/src/
H A DMap.tsx64 polygons: [],
156 polygons: propObjects.filter((elem) => elem?.type === 'polygon'),
186 polygons={this.state.polygons}
221 polygons={this.state.polygons}
H A DMap.types.ts55 polygons: PolygonObject[];

12