|
import React from "react";
|
|
import { Polygon } from "react-native-maps";
|
|
|
|
export default function MapPolygons({ coordinates }) {
|
|
return (
|
|
<Polygon
|
|
coordinates={coordinates}
|
|
// hole={hole}
|
|
strokeColor="rgba(25, 118, 210,0.2)"
|
|
fillColor="rgba(25, 118, 210,0.5)"
|
|
strokeWidth={5}
|
|
/>
|
|
);
|
|
}
|
|
|
|
|