mirror of
https://github.com/status-im/react-native-mapbox-gl.git
synced 2026-08-31 13:01:15 +00:00
13 lines
347 B
JavaScript
13 lines
347 B
JavaScript
import turfHelpers from '@turf/helpers';
|
|
|
|
export function makePoint (coordinates) {
|
|
return turfHelpers.point(coordinates);
|
|
}
|
|
|
|
export function makeLatLngBounds (northEastCoordinates, southWestCoordinates) {
|
|
return turfHelpers.featureCollection([
|
|
turfHelpers.point(northEastCoordinates),
|
|
turfHelpers.point(southWestCoordinates),
|
|
]);
|
|
}
|