# Polygon 线段覆盖物

```javascript
<MapView>
  <MapView.Polyline
    points={[
      { latitude: 39, longitude: 113 },
      ...
    ]}
    width={2}
    color="rgba(0, 0, 255, 0.5)"
  />
</MapView>
```
<img src="https://user-images.githubusercontent.com/1709072/36708795-bf660b60-1baf-11e8-8e25-d1f44cfa5acd.png" width=300>

## Props

### `points: LatLng[]`
坐标列表

---

### `width?: number`
线段宽度

---

### `color?: color`
线段颜色
