-
-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
111 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"name": "@maplibre-react-native/examples", | ||
"version": "1.0.0", | ||
"private": true, | ||
"main": "src/index.js", | ||
"module": "src/index.js", | ||
"react-native": "src/index.js", | ||
"source": "src/index.js", | ||
"files": [ | ||
"src", | ||
"!**/__tests__" | ||
], | ||
"peerDependencies": { | ||
"@maplibre/maplibre-react-native": "*", | ||
"react": "*", | ||
"react-native": "*" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
// ANIMATIONS | ||
export { default as AnimatedLine } from './Animations/AnimatedLine'; | ||
export { default as DriveTheLine } from './Animations/DriveTheLine'; | ||
// ANNOTATIONS | ||
export { default as CustomCallout } from './Annotations/CustomCallout'; | ||
export { default as Heatmap } from './Annotations/Heatmap'; | ||
export { default as MarkerView } from './Annotations/MarkerView'; | ||
export { default as ShowPointAnnotation } from './Annotations/ShowPointAnnotation'; | ||
export { default as PointAnnotationAnchors } from './Annotations/PointAnnotationAnchors'; | ||
// CAMERA | ||
export { default as CompassView } from './Camera/CompassView'; | ||
export { default as Fit } from './Camera/Fit'; | ||
export { default as FlyTo } from './Camera/FlyTo'; | ||
export { default as GetCenter } from './Camera/GetCenter'; | ||
export { default as GetZoom } from './Camera/GetZoom'; | ||
export { default as RestrictMapBounds } from './Camera/RestrictMapBounds'; | ||
export { default as SetHeading } from './Camera/SetHeading'; | ||
export { default as SetPitch } from './Camera/SetPitch'; | ||
export { default as SetUserTrackingModes } from './Camera/SetUserTrackingModes'; | ||
export { default as TakeSnapshot } from './Camera/TakeSnapshot'; | ||
export { default as TakeSnapshotWithMap } from './Camera/TakeSnapshotWithMap'; | ||
export { default as YoYo } from './Camera/YoYo'; | ||
// FILLRASTERLAYER | ||
export { default as ChoroplethLayerByZoomLevel } from './FillRasterLayer/ChoroplethLayerByZoomLevel'; | ||
export { default as CustomVectorSource } from './FillRasterLayer/CustomVectorSource'; | ||
export { default as GeoJSONSource } from './FillRasterLayer/GeoJSONSource'; | ||
export { default as ImageOverlay } from './FillRasterLayer/ImageOverlay'; | ||
export { default as IndoorBuilding } from './FillRasterLayer/IndoorBuilding'; | ||
export { default as QueryAtPoint } from './FillRasterLayer/QueryAtPoint'; | ||
export { default as QueryWithRect } from './FillRasterLayer/QueryWithRect'; | ||
export { default as WatercolorRasterTiles } from './FillRasterLayer/WatercolorRasterTiles'; | ||
// LINE LAYER | ||
export { default as GradientLine } from './LineLayer/GradientLine'; | ||
// MAP | ||
export { default as ChangeLayerColor } from './Map/ChangeLayerColor'; | ||
export { default as CreateOfflineRegion } from './Map/CreateOfflineRegion'; | ||
export { default as PointInMapView } from './Map/PointInMapView'; | ||
export { default as ShowAndHideLayer } from './Map/ShowAndHideLayer'; | ||
export { default as ShowClick } from './Map/ShowClick'; | ||
export { default as ShowMap } from './Map/ShowMap'; | ||
export { default as ShowMapLocalStyle } from './Map/ShowMapLocalStyle'; | ||
export { default as ShowRegionDidChange } from './Map/ShowRegionDidChange'; | ||
export { default as SourceLayerVisibility } from './Map/SourceLayerVisibility'; | ||
export { default as StyleJson } from './Map/StyleJson'; | ||
export { default as TwoByTwo } from './Map/TwoByTwo'; | ||
// SYMBOLCIRCLELAYER | ||
export { default as CustomIcon } from './SymbolCircleLayer/CustomIcon'; | ||
export { default as DataDrivenCircleColors } from './SymbolCircleLayer/DataDrivenCircleColors'; | ||
export { default as EarthQuakes } from './SymbolCircleLayer/EarthQuakes'; | ||
export { default as ShapeSourceIcon } from './SymbolCircleLayer/ShapeSourceIcon'; | ||
// USERLOCATION | ||
export { default as SetDisplacement } from './UserLocation/SetDisplacement'; | ||
export { default as SetTintColor } from './UserLocation/SetTintColor'; | ||
export { default as SetUserLocationRenderMode } from './UserLocation/SetUserLocationRenderMode'; | ||
export { default as SetUserLocationVerticalAlignment } from './UserLocation/SetUserLocationVerticalAlignment'; | ||
export { default as UserLocationChange } from './UserLocation/UserLocationChange'; | ||
export { default as SetAndroidPreferredFramesPerSecond } from './UserLocation/SetAndroidPreferredFramesPerSecond'; | ||
// MISC | ||
export { default as BugReportPage } from './BugReportPage'; | ||
export { default as CacheManagement } from './CacheManagement'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
export * from './examples'; | ||
export { default as sheet } from './styles/sheet'; | ||
export { default as colors } from './styles/colors'; | ||
export * from './utils'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters